comparison msgfplus_search.xml @ 0:1049de3f4aed

Uploaded
author iracooke
date Sun, 06 Jan 2013 20:06:08 -0500
parents
children 50002ff2c1f3
comparison
equal deleted inserted replaced
-1:000000000000 0:1049de3f4aed
1 <tool id="proteomics_search_msgfplus_1" name="MSGF+ MSMS Search" version="1.0.0">
2 <requirements><requirement type="package">protkgem</requirement></requirements>
3 <description>Run an MSGF+ Search</description>
4
5 <command>
6 #if $database.source_select=="built_in":
7 msgfplus_search.rb --galaxy -d $database.dbkey --java-mem 8000M
8 #else #msgfplus_search.rb -d $database.fasta_file
9 #end if
10
11 --var-mods='
12 $variable_mods
13 #for $custom_variable_mod in $custom_variable_mods:
14 ,${custom_variable_mod.custom_mod}
15 #end for
16 '
17
18 --fix-mods='
19 $fixed_mods
20 #for $custom_fix_mod in $custom_fix_mods:
21 ,${custom_fix_mod.custom_mod}
22 #end for
23 '
24
25 $input_file -o $output -r --enzyme=$enzyme --precursor-ion-tol-units=$precursor_tolu -v $missed_cleavages -f $fragment_ion_tol -p $precursor_ion_tol --instrument=$instrument
26
27
28
29 </command>
30
31 <inputs>
32 <conditional name="database">
33 <param name="source_select" type="select" label="Database source">
34 <option value="built_in">Built-In</option>
35 <option value="input_ref">Your Upload File</option>
36 </param>
37 <when value="built_in">
38 <param name="dbkey" type="select" format="text" >
39 <label>Database</label>
40 <options from_file="pepxml_databases.loc">
41 <column name="name" index="0" />
42 <column name="value" index="2" />
43 </options>
44 </param>
45 </when>
46 <when value="input_ref">
47 <param name="fasta_file" type="data" format="fasta" label="Uploaded FASTA file" />
48 </when>
49 </conditional>
50
51 <param name="input_file" type="data" format="mzml" multiple="false" label="MSMS File" help="An mzML file with MS/MS data"/>
52
53
54 <param name="variable_mods" format="text" type="select" multiple="true" label="Variable Modifications" help="Hold the appropriate key while
55 clicking to select multiple items">
56 <options from_file="msgfplus_mods.loc">
57 <column name="name" index="0" />
58 <column name="value" index="2" />
59 </options>
60 </param>
61
62 <repeat name="custom_variable_mods" title="Custom Variable Modifications" help="See https://bix-lab.ucsd.edu/pages/viewpage.action?pageId=13533355 for details on how to create these">
63 <param name="custom_mod" type="text">
64 </param>
65 </repeat>
66
67
68 <param name="fixed_mods" format="text" type="select" multiple="true" label="Fixed Modifications" help="Hold the appropriate key while
69 clicking to select multiple items">
70 <options from_file="msgfplus_mods.loc">
71 <column name="name" index="0" />
72 <column name="value" index="2" />
73 </options>
74 </param>
75
76 <repeat name="custom_fix_mods" title="Custom Fixed Modifications" help="See https://bix-lab.ucsd.edu/pages/viewpage.action?pageId=13533355 for details on how to create these">
77 <param name="custom_mod" type="text">
78 </param>
79 </repeat>
80
81
82
83 <param name="missed_cleavages" type="select" format="text" help="Allow peptides to contain up to this many missed enzyme cleavage sites">
84 <label>Missed Cleavages Allowed</label>
85 <option value="0">0</option>
86 <option value="1">1</option>
87 <option value="2">2</option>
88 </param>
89
90 <param name="enzyme" type="select" format="text">
91 <label>Enzyme</label>
92 <option value="Trypsin">Trypsin</option>
93 </param>
94
95 <param name="instrument" type="select" format="text">
96 <label>Instrument Type</label>
97 <option value="2">TOF</option>
98 <option value="0">Low-res LCQ/LTQ</option>
99 <option value="1">High-res LTQ</option>
100 </param>
101
102 <param name="fragment_ion_tol" help="Fragment Ion Tolerance in Daltons" type="float" value="0.65" min="0" max="10000" label="Fragment ion tolerance"/>
103
104 <param name="precursor_ion_tol" help="Precursor Ion Tolerance (Da or ppm)" type="float" value="100" min="0" max="10000" label="Precursor ion tolerance"/>
105 <param name="precursor_tolu" type="select" format="text">
106 <label>Precursor Ion Tolerance Units</label>
107 <option value="ppm">ppm</option>
108 <option value="Da">Da</option>
109 </param>
110
111 </inputs>
112
113
114 <outputs>
115 <data format="raw_pepxml" name="output" metadata_source="input_file" label="MSGF+_vs_${database.dbkey if $database.has_key('dbkey') else $database.fasta_file.display_name}.${input_file.display_name}.${input_file.display_name}.pepXML"/>
116 </outputs>
117
118
119 <help>
120
121 **What it does**
122
123 Runs an MS/MS database search using the MSGFPlus search engine. Output is in the form of a pepXML file containing identified peptides along with their raw search scores.
124
125 ----
126
127 **References**
128
129 Please see http://proteomics.ucsd.edu/Software/MSGFPlus.html for details of the MSGFPlus search engine and references describing its algorithm
130
131 </help>
132
133 </tool>