6
|
1 <tool id="SAINT_ProteinInteractions" name="SAINT Output to Protein Interaction File">
|
|
2 <description></description>
|
|
3 <command interpreter="python">ProteinInteractions.py $input $saint_cutoff $CPDB_cutoff $species $Cytoscape_File \$INSTALL_RUN_PATH/</command>
|
|
4 <requirements>
|
|
5 <requirement type="set_environment">INSTALL_RUN_PATH</requirement>
|
|
6 </requirements>
|
|
7 <inputs>
|
|
8 <param format="txt" name="input" type="data" label="SAINT Output"/>
|
|
9 <param type="float" name="saint_cutoff" label="Saint Score Cutoff" value="0.8"/>
|
|
10 <param type="float" name="CPDB_cutoff" label="Consensus Path Database Score Cutoff" value="0.8"/>
|
|
11 <param type="select" name="species" label="Species">
|
|
12 <option value="Human">Human</option>
|
|
13 <option value="Yeast">Yeast</option>
|
|
14 <option value="Mouse">Mouse</option>
|
|
15 </param>
|
|
16 </inputs>
|
|
17 <outputs>
|
|
18 <data format="sif" name="Cytoscape_File" label="Cytoscape File"/>
|
|
19 </outputs>
|
|
20 <stdio>
|
|
21 <regex match="Error|error"
|
|
22 source="stdout"
|
|
23 level="fatal"
|
|
24 description="Unknown error"/>
|
|
25 <regex match="Error|error"
|
|
26 source="stderr"
|
|
27 level="fatal"
|
|
28 description="Unknown error"/>
|
|
29 <regex match="Error: bad bait"
|
|
30 source="stdout"
|
|
31 level="fatal"
|
|
32 description="Error: bad bait"/>
|
|
33 </stdio>
|
|
34
|
|
35 <tests>
|
|
36 <test>
|
|
37 <param name="input" value="fa_gc_content_input.fa"/>
|
|
38 <output name="out_file1" file="fa_gc_content_output.txt"/>
|
|
39 </test>
|
|
40 </tests>
|
|
41 <help>
|
10
|
42 SAINT Output to Protein Interaction File
|
|
43 ----------------------------------------
|
6
|
44
|
10
|
45 This tool reads in a *list.txt* file from SAINTexpress and the
|
|
46 interactions from ConsensusPathDB (http://consensuspathdb.org/) and
|
|
47 returns all the known protein-protein interactions observed in the
|
|
48 experiment as a simple interaction file (.SIF).
|
6
|
49
|
10
|
50 **Note:** This network will not include identified interactions
|
|
51 between baits and preys. This tool queries known interactions
|
|
52 between preys only
|
6
|
53
|
10
|
54 **1) SAINT Output File**
|
|
55
|
|
56 SAINTexpress generated *list.txt* file.
|
6
|
57
|
10
|
58 **Note:** Prey IDs must be in Uniprot/Swissprot format (e.g.
|
|
59 "EGFR\_HUMAN" or "P00533").
|
|
60
|
|
61 **2) SAINT Score Cutoff**
|
|
62
|
|
63 SaintScore filter in range 0-1 (default 0.8)
|
6
|
64
|
10
|
65 **3) Consensus Path Database Score Cutoff**
|
6
|
66
|
10
|
67 Interaction confidence filter in range 0-1 (default 0.8) to specify
|
|
68 which protein interactions in ConsensusPathDB to include.
|
6
|
69
|
10
|
70 **4) Species**
|
|
71
|
|
72 Please specify species. Supported species are Human, Mouse, and Yeast.
|
6
|
73 </help>
|
|
74 </tool> |