|
0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
|
2 <tool id="Digestor" name="Digestor" version="1.12.0">
|
|
|
3 <description>Digests a protein database in-silico.</description>
|
|
|
4 <macros>
|
|
|
5 <token name="@EXECUTABLE@">Digestor</token>
|
|
|
6 <import>macros.xml</import>
|
|
|
7 </macros>
|
|
|
8 <expand macro="stdio"/>
|
|
|
9 <expand macro="requirements"/>
|
|
|
10 <command>Digestor
|
|
|
11
|
|
|
12 -in ${param_in}
|
|
|
13 -out ${param_out}
|
|
|
14 -out_type ${param_out_type}
|
|
|
15 -missed_cleavages ${param_missed_cleavages}
|
|
|
16 -min_length ${param_min_length}
|
|
|
17 -max_length ${param_max_length}
|
|
|
18 -enzyme ${param_enzyme}
|
|
|
19 -threads \${GALAXY_SLOTS:-24}
|
|
|
20 </command>
|
|
|
21 <inputs>
|
|
|
22 <param name="param_in" type="data" format="fasta" optional="False" label="input file" help="(-in)"/>
|
|
|
23 <param name="param_out_type" type="select" optional="True" label="Set this if you cannot control the filename of 'out', e.g., in TOPPAS." help="(-out_type)">
|
|
|
24 <option value="idXML">idXML</option>
|
|
|
25 <option value="fasta">fasta</option>
|
|
|
26 </param>
|
|
|
27 <param name="param_missed_cleavages" type="integer" min="0" optional="True" value="1" label="The number of allowed missed cleavages" help="(-missed_cleavages)"/>
|
|
|
28 <param name="param_min_length" type="integer" value="6" label="Minimum length of peptide" help="(-min_length)"/>
|
|
|
29 <param name="param_max_length" type="integer" value="40" label="Maximum length of peptide" help="(-max_length)"/>
|
|
|
30 <param name="param_enzyme" type="select" optional="True" value="Trypsin" label="The type of digestion enzyme" help="(-enzyme)">
|
|
|
31 <option value="Trypsin">Trypsin</option>
|
|
|
32 <option value="none">none</option>
|
|
|
33 </param>
|
|
|
34 </inputs>
|
|
|
35 <outputs>
|
|
|
36 <data name="param_out" label="Output file (peptides)" format="fasta">
|
|
|
37 <change_format>
|
|
|
38 <when input="param_out_type" value="idXML" format="idXML"/>
|
|
|
39 </change_format>
|
|
|
40 </data>
|
|
|
41 </outputs>
|
|
|
42 <help>**What it does**
|
|
|
43
|
|
|
44 Digests a protein database in-silico.
|
|
|
45
|
|
|
46
|
|
|
47 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_Digestor.html
|
|
|
48
|
|
|
49 @REFERENCES@
|
|
|
50 </help>
|
|
|
51 </tool>
|