1
|
1 <tool id="CRAPomeQuery" name="Query CRAPome">
|
|
2 <description></description>
|
|
3 <command interpreter="python">CRAPomeQuery.py $input $species $CrapomeFile \$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="Prey File or single column list"/>
|
|
9 <param type="select" name="species" label="Species">
|
|
10 <option value="HUMAN">Human</option>
|
|
11 <option value="YEAST">Yeast</option>
|
|
12 </param>
|
|
13 </inputs>
|
|
14 <outputs>
|
|
15 <data format="txt" name="CrapomeFile" label="CRAPome File"/>
|
|
16 </outputs>
|
|
17 <stdio>
|
11
|
18 <regex match="TypeError"
|
|
19 source="stderr"
|
|
20 level="fatal"
|
|
21 description="Error: Check input file."/>
|
1
|
22 <regex match="Error|error"
|
|
23 source="stdout"
|
|
24 level="fatal"
|
|
25 description="Unknown error"/>
|
|
26 <regex match="Error|error"
|
|
27 source="stderr"
|
|
28 level="fatal"
|
|
29 description="Unknown error"/>
|
|
30 </stdio>
|
|
31 <tests>
|
|
32 <test>
|
|
33 <param name="input" value="fa_gc_content_input.fa"/>
|
|
34 <output name="out_file1" file="fa_gc_content_output.txt"/>
|
|
35 </test>
|
|
36 </tests>
|
|
37 <help>
|
|
38 Query CRAPome
|
|
39 -------------
|
|
40 This program will read in a SAINT formatted *Prey* file or a single column list (no column name) of Uniprot accessions (e.g. "P00533" or "EGFR_HUMAN"), query the CRAPome database (v1.1) http://crapome.org, and return a file specifying the prevalence of each protein in the CRAPome.
|
|
41
|
|
42 **1) Input File**
|
11
|
43
|
1
|
44 SAINT formatted *Prey* file or a single column list (no column name) of Uniprot accessions.
|
|
45
|
|
46 **2) Species**
|
11
|
47
|
1
|
48 Please specify species. Supported species are Human and Yeast.
|
|
49 </help>
|
|
50 </tool> |