1
|
1 <tool id="CRAPomeQuery" name="Query CRAPome">
|
|
2 <description></description>
|
18
|
3 <command interpreter="python">CRAPomeQuery.py $input $species $fasta_db $CrapomeFile \$INSTALL_RUN_PATH/</command>
|
1
|
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>
|
18
|
13 <param type="data" name="fasta_db" format="fasta" label="Provide Uniprot Fasta database" optional="true"/>
|
1
|
14 </inputs>
|
|
15 <outputs>
|
|
16 <data format="txt" name="CrapomeFile" label="CRAPome File"/>
|
|
17 </outputs>
|
|
18 <stdio>
|
11
|
19 <regex match="TypeError"
|
|
20 source="stderr"
|
|
21 level="fatal"
|
|
22 description="Error: Check input file."/>
|
1
|
23 <regex match="Error|error"
|
|
24 source="stdout"
|
|
25 level="fatal"
|
|
26 description="Unknown error"/>
|
|
27 <regex match="Error|error"
|
|
28 source="stderr"
|
|
29 level="fatal"
|
|
30 description="Unknown error"/>
|
|
31 </stdio>
|
|
32 <tests>
|
|
33 <test>
|
|
34 <param name="input" value="fa_gc_content_input.fa"/>
|
|
35 <output name="out_file1" file="fa_gc_content_output.txt"/>
|
|
36 </test>
|
|
37 </tests>
|
|
38 <help>
|
|
39 Query CRAPome
|
|
40 -------------
|
|
41 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.
|
|
42
|
|
43 **1) Input File**
|
11
|
44
|
1
|
45 SAINT formatted *Prey* file or a single column list (no column name) of Uniprot accessions.
|
|
46
|
|
47 **2) Species**
|
11
|
48
|
1
|
49 Please specify species. Supported species are Human and Yeast.
|
18
|
50
|
|
51 **3) Uniprot Fasta Database**
|
|
52
|
|
53 A uniprot database can be provided that will be used to get gene names.
|
1
|
54 </help>
|
|
55 </tool> |