7
|
1 <tool id="proteomics_search_omssa_1" name="OMSSA MSMS Search" version="1.1.0">
|
6
|
2
|
|
3 <requirements>
|
7
|
4 <container type="docker">iracooke/protk-1.4.1</container>
|
|
5 <requirement type="package" version="1.4">protk</requirement>
|
6
|
6 <requirement type="package" version="2.1.9">omssa</requirement>
|
|
7 <requirement type="package" version="2.2.29">blast+</requirement>
|
|
8 </requirements>
|
|
9
|
|
10
|
|
11 <description>Run an OMSSA MS/MS Search</description>
|
|
12
|
|
13 <command>omssa_search.rb
|
|
14
|
|
15 #if $database.source_select=="built_in":
|
|
16 -d $database.dbkey
|
|
17 #else
|
|
18 -d $database.fasta_file
|
|
19 #end if
|
|
20
|
|
21 --var-mods='
|
|
22 $variable_mods
|
|
23 '
|
|
24
|
|
25 --fix-mods='
|
|
26 $fixed_mods
|
|
27 '
|
|
28
|
|
29 --searched-ions='
|
|
30 $searched_ions
|
|
31 '
|
|
32
|
|
33 $input_file
|
|
34 -o $output
|
|
35 -r
|
|
36
|
|
37 --enzyme=$enzyme
|
|
38
|
|
39 --precursor-ion-tol-units=$precursor_tolu
|
|
40
|
|
41 -v $missed_cleavages
|
|
42
|
|
43 -f $fragment_ion_tol
|
|
44
|
|
45 -p $precursor_ion_tol
|
|
46
|
|
47 --num-peaks-for-multi-isotope-search $multi_isotope
|
|
48
|
|
49 $use_average_mass
|
|
50 $respect_precursor_charges
|
|
51
|
|
52 --max-hit-expect $max_hit_expect
|
|
53
|
|
54 --intensity-cut-off $intensity_cut_off
|
|
55
|
|
56 </command>
|
|
57
|
|
58
|
|
59 <inputs>
|
|
60 <conditional name="database">
|
|
61 <param name="source_select" type="select" label="Database source">
|
|
62 <option value="built_in">Built-In</option>
|
7
|
63 <option selected="true" value="input_ref">Uploaded fasta file</option>
|
6
|
64 </param>
|
|
65 <when value="built_in">
|
|
66 <param name="dbkey" type="select" format="text" >
|
|
67 <label>Database</label>
|
|
68 <options from_file="pepxml_databases.loc">
|
|
69 <column name="name" index="0" />
|
|
70 <column name="value" index="2" />
|
|
71 </options>
|
|
72 </param>
|
|
73 </when>
|
|
74 <when value="input_ref">
|
|
75 <param name="fasta_file" type="data" format="fasta" label="Uploaded FASTA file" />
|
|
76 </when>
|
|
77 </conditional>
|
|
78
|
|
79 <param name="input_file" type="data" format="mgf" multiple="false" label="MSMS File" help="An mgf file with MS/MS data"/>
|
|
80
|
|
81 <param name="variable_mods" format="text" type="select" multiple="true" label="Variable Modifications" help="Hold the appropriate key while
|
|
82 clicking to select multiple items">
|
|
83 <options from_file="omssa_mods.loc">
|
|
84 <column name="name" index="0" />
|
|
85 <column name="value" index="2" />
|
|
86 </options>
|
|
87 </param>
|
|
88
|
|
89 <param name="fixed_mods" format="text" type="select" multiple="true" label="Fixed Modifications" help="Hold the appropriate key while
|
|
90 clicking to select multiple items">
|
|
91 <options from_file="omssa_mods.loc">
|
|
92 <column name="name" index="0" />
|
|
93 <column name="value" index="2" />
|
|
94 </options>
|
|
95 </param>
|
|
96
|
|
97
|
|
98 <param name="missed_cleavages" type="select" format="text" help="Allow peptides to contain up to this many missed enzyme cleavage sites">
|
|
99 <label>Missed Cleavages Allowed</label>
|
|
100 <option value="0">0</option>
|
|
101 <option value="1">1</option>
|
7
|
102 <option selected="true" value="2">2</option>
|
6
|
103 </param>
|
|
104
|
|
105 <param name="enzyme" type="select" format="text">
|
|
106 <label>Enzyme</label>
|
|
107 <option value="0">Trypsin</option>
|
|
108 <option value="1">Arg-C</option>
|
|
109 <option value="2">CNBr</option>
|
|
110 <option value="3">Chymotrypsin (FYWL)</option>
|
|
111 <option value="4">Formic Acid</option>
|
|
112 <option value="5">Lys-C</option>
|
|
113 <option value="6">Lys-C, no P rule</option>
|
|
114 <option value="7">Pepsin A</option>
|
|
115 <option value="8">Trypsin+CNBr</option>
|
|
116 <option value="9">Trypsin+Chymotrypsin (FYWLKR)</option>
|
|
117 <option value="10">Trypsin, no P rule</option>
|
|
118 <option value="11">Whole protein</option>
|
|
119 <option value="12">Asp-N</option>
|
|
120 <option value="13">Glu-C</option>
|
|
121 <option value="14">Asp-N+Glu-C</option>
|
|
122 <option value="15">Top-Down</option>
|
|
123 <option value="16">Semi-Tryptic</option>
|
|
124 <option value="17">No Enzyme</option>
|
|
125 <option value="18">Chymotrypsin, no P rule (FYWL)</option>
|
|
126 <option value="19">Asp-N (DE)</option>
|
|
127 <option value="20">Glu-C (DE)</option>
|
|
128 <option value="21">Lys-N (K)</option>
|
|
129 <option value="22">Thermolysin, no P rule</option>
|
|
130 <option value="23">Semi-Chymotrypsin (FYWL)</option>
|
|
131 <option value="24">Semi-Glu-C</option>
|
|
132 </param>
|
|
133
|
7
|
134 <param name="fragment_ion_tol" help="Fragment Ion Tolerance in Daltons" type="float" value="0.5" min="0" max="10000" label="Fragment ion tolerance"/>
|
|
135 <param name="max_hit_expect" help="Expect values less than this are considered to be hits. Use a large value, eg 10000 when results will be processed downstream with Peptide Prophet" type="float" value="10000.0" min="0" max="10000000" label="Maximum Expect value allowed in the hit list"/><!-- -he-->
|
6
|
136 <param name="intensity_cut_off" help="Peak intensity cut-off as a fraction of maximum peak intensity" type="float" value="0.0005" min="0" max="1" label="Peak intensity cut-off"/><!-- -ci-->
|
|
137
|
|
138
|
7
|
139 <param name="precursor_ion_tol" help="Precursor Ion Tolerance (Da or ppm)" type="float" value="10" min="0" max="10000" label="Precursor ion tolerance"/>
|
6
|
140 <param name="precursor_tolu" type="select" format="text">
|
|
141 <label>Precursor Ion Tolerance Units</label>
|
|
142 <option value="ppm">ppm</option>
|
|
143 <option value="Da">Da</option>
|
|
144 </param>
|
|
145
|
|
146 <param name="use_average_mass" type="boolean" label="Use average precursor masses" help="Match precursor to average mass of the parent ion instead of its monoisotopic mass" truevalue="-a average" falsevalue=""/>
|
|
147 <param name="respect_precursor_charges" type="boolean" label="Respect precursor charges" help="Use precursor charge information in input file rather than OMSSA's inferred value" truevalue="--respect-charges" falsevalue=""/>
|
|
148
|
|
149 <param name="multi_isotope" type="select" format="text" help="Include this many neighbouring peaks when searching for a match to the precursor mass. Only used when doing monoisotopic search">
|
|
150 <label>Multi-isotope search.</label>
|
|
151 <option value="0">0</option>
|
|
152 <option value="1">1</option>
|
|
153 <option value="2">2</option>
|
|
154 <option value="3">3</option>
|
|
155 <option value="4">4</option>
|
|
156 </param>
|
|
157
|
|
158 <param name="searched_ions" display="checkboxes" type="select" multiple="true" format="text" label="Ions included in search" help="">
|
7
|
159 <option value="0">a</option>
|
6
|
160 <option selected="true" value="1">b</option>
|
|
161 <option value="2">c</option>
|
7
|
162 <option value="3">x</option>
|
6
|
163 <option selected="true" value="4">y</option>
|
|
164 <option value="5">zdot</option>
|
|
165 <option value="10">adot</option>
|
|
166 <option value="11">x-CO2</option>
|
|
167 <option value="12">adot-CO2</option>
|
|
168 </param>
|
|
169
|
|
170 </inputs>
|
|
171
|
|
172 <outputs>
|
|
173 <data format="raw_pepxml" name="output" metadata_source="input_file" label="omssa_vs_${database.dbkey if $database.has_key('dbkey') else $database.fasta_file.display_name}.${input_file.display_name}.pepXML"/>
|
|
174 </outputs>
|
|
175
|
7
|
176 <tests>
|
|
177 <!-- Just test that the tool runs and produces vaguely correct output -->
|
|
178 <test>
|
|
179 <param name="source_select" value="input_ref"/>
|
|
180 <param name="fasta_file" value="AASequences.fasta" format="fasta"/>
|
|
181 <param name="input_file" value="mr176-BSA100fmole_BA3_01_8168.d.mgf" format="mgf"/>
|
|
182 <param name="max_hit_expect" value="1000"/>
|
|
183 <param name="precursor_ion_tol" value="1.2"/>
|
|
184 <param name="precursor_tolu" value="Da"/>
|
|
185 <param name="fix_mods" value="3"/>
|
|
186 <param name="variable_mods" value="1"/>
|
|
187
|
|
188
|
|
189 <output name="output" format="raw_pepxml">
|
|
190 <assert_contents>
|
|
191 <has_text text="VLFSQAQVYELERRFK" />
|
|
192 </assert_contents>
|
|
193 </output>
|
|
194 </test>
|
|
195 </tests>
|
|
196
|
6
|
197 <help>
|
|
198 **What it does**
|
|
199
|
|
200 Runs an MS/MS database search using the OMSSA search engine. Output is in the form of a pepXML file containing identified peptides along with their raw search scores.
|
|
201
|
|
202 ----
|
|
203
|
|
204 **Citation**
|
|
205
|
|
206 If you use this tool please read and cite the paper describing OMSSA.
|
|
207
|
|
208 Geer L. Y., et al. “Open mass spectrometry search algorithm” *J. Proteome Res.* 3(5), 958-964 (2004).
|
|
209
|
|
210 </help>
|
|
211 </tool>
|