comparison DigestorMotif.xml @ 0:3070d71e0e5c draft

Uploaded
author bgruening
date Thu, 16 Apr 2015 08:37:04 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3070d71e0e5c
1 <?xml version='1.0' encoding='UTF-8'?>
2 <tool id="DigestorMotif" name="DigestorMotif" version="2.0.0">
3 <description>digests a protein database in-silico</description>
4 <macros>
5 <token name="@EXECUTABLE@">DigestorMotif</token>
6 <import>macros.xml</import>
7 </macros>
8 <expand macro="stdio"/>
9 <expand macro="requirements"/>
10 <command>DigestorMotif
11
12 #if $param_in:
13 -in $param_in
14 #end if
15 #if $param_out:
16 -out $param_out
17 #end if
18 #if $param_missed_cleavages:
19 -missed_cleavages $param_missed_cleavages
20 #end if
21 #if $param_mass_accuracy:
22 -mass_accuracy $param_mass_accuracy
23 #end if
24 #if $param_min_length:
25 -min_length $param_min_length
26 #end if
27 #if $param_out_option:
28 -out_option $param_out_option
29 #end if
30 #if $param_enzyme:
31 -enzyme "$param_enzyme"
32 #end if
33 #if $param_motif:
34 -motif "$param_motif"
35 #end if
36 -threads \${GALAXY_SLOTS:-24}
37 #if $adv_opts.adv_opts_selector=='advanced':
38 #if $adv_opts.param_force:
39 -force
40 #end if
41 #end if
42 </command>
43 <inputs>
44 <param name="param_in" type="data" format="fasta" optional="False" label="FASTA input file" help="(-in) "/>
45 <param name="param_missed_cleavages" type="integer" min="0" optional="True" value="1" label="the number of allowed missed cleavages" help="(-missed_cleavages) "/>
46 <param name="param_mass_accuracy" type="integer" value="1000" label="give your mass accuracy in pp" help="(-mass_accuracy) "/>
47 <param name="param_min_length" type="integer" value="6" label="minimum length of peptide" help="(-min_length) "/>
48 <param name="param_out_option" type="integer" value="1" label="indicate 1 (peptide table only), 2 (statistics only) or (both peptide table + statistics)" help="(-out_option) "/>
49 <param name="param_enzyme" type="text" size="30" value="Trypsin" label="the digestion enzyme" help="(-enzyme) ">
50 <sanitizer>
51 <valid initial="string.printable">
52 <remove value="'"/>
53 <remove value="&quot;"/>
54 </valid>
55 </sanitizer>
56 </param>
57 <param name="param_motif" type="text" size="30" value="M" label="the motif for the restricted peptidome" help="(-motif) ">
58 <sanitizer>
59 <valid initial="string.printable">
60 <remove value="'"/>
61 <remove value="&quot;"/>
62 </valid>
63 </sanitizer>
64 </param>
65 <expand macro="advanced_options">
66 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
67 </expand>
68 </inputs>
69 <outputs>
70 <data name="param_out" format="idxml"/>
71 </outputs>
72 <help>**What it does**
73
74 digests a protein database in-silico
75
76
77 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_DigestorMotif.html</help>
78 <expand macro="references"/>
79 </tool>