0
|
1 <tool id="proteomics_search_msgfplus_1" name="MSGF+ MSMS Search" version="1.0.0">
|
1
|
2
|
|
3 <requirements>
|
|
4 <requirement type="package" version="1.1.9">galaxy_protk</requirement>
|
|
5 <requirement type="package" version="20121116">protk_msgfplus</requirement>
|
|
6 </requirements>
|
|
7
|
|
8
|
0
|
9 <description>Run an MSGF+ Search</description>
|
|
10
|
1
|
11
|
|
12
|
|
13 <description>Run an X!Tandem Search</description>
|
|
14
|
0
|
15 <command>
|
|
16 #if $database.source_select=="built_in":
|
1
|
17 rvm 1.9.3@protk-1.1.9 do tandem_search.rb -d $database.dbkey
|
|
18 #else #rvm 1.9.3@protk-1.1.9 do tandem_search.rb -d $database.fasta_file
|
|
19 #end if
|
|
20
|
|
21
|
|
22 <command>
|
|
23 #if $database.source_select=="built_in":
|
|
24 rvm 1.9.3@protk-1.1.9 do msgfplus_search.rb --galaxy -d $database.dbkey
|
|
25 #else #rvm 1.9.3@protk-1.1.9 do msgfplus_search.rb -d $database.fasta_file
|
0
|
26 #end if
|
|
27
|
|
28 --var-mods='
|
|
29 $variable_mods
|
|
30 #for $custom_variable_mod in $custom_variable_mods:
|
|
31 ,${custom_variable_mod.custom_mod}
|
|
32 #end for
|
|
33 '
|
|
34
|
|
35 --fix-mods='
|
|
36 $fixed_mods
|
|
37 #for $custom_fix_mod in $custom_fix_mods:
|
|
38 ,${custom_fix_mod.custom_mod}
|
|
39 #end for
|
|
40 '
|
|
41
|
|
42 $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
|
|
43
|
|
44
|
|
45
|
|
46 </command>
|
|
47
|
|
48 <inputs>
|
|
49 <conditional name="database">
|
|
50 <param name="source_select" type="select" label="Database source">
|
|
51 <option value="built_in">Built-In</option>
|
|
52 <option value="input_ref">Your Upload File</option>
|
|
53 </param>
|
|
54 <when value="built_in">
|
|
55 <param name="dbkey" type="select" format="text" >
|
|
56 <label>Database</label>
|
|
57 <options from_file="pepxml_databases.loc">
|
|
58 <column name="name" index="0" />
|
|
59 <column name="value" index="2" />
|
|
60 </options>
|
|
61 </param>
|
|
62 </when>
|
|
63 <when value="input_ref">
|
|
64 <param name="fasta_file" type="data" format="fasta" label="Uploaded FASTA file" />
|
|
65 </when>
|
|
66 </conditional>
|
|
67
|
|
68 <param name="input_file" type="data" format="mzml" multiple="false" label="MSMS File" help="An mzML file with MS/MS data"/>
|
|
69
|
|
70
|
|
71 <param name="variable_mods" format="text" type="select" multiple="true" label="Variable Modifications" help="Hold the appropriate key while
|
|
72 clicking to select multiple items">
|
|
73 <options from_file="msgfplus_mods.loc">
|
|
74 <column name="name" index="0" />
|
|
75 <column name="value" index="2" />
|
|
76 </options>
|
|
77 </param>
|
|
78
|
|
79 <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">
|
|
80 <param name="custom_mod" type="text">
|
|
81 </param>
|
|
82 </repeat>
|
|
83
|
|
84
|
|
85 <param name="fixed_mods" format="text" type="select" multiple="true" label="Fixed Modifications" help="Hold the appropriate key while
|
|
86 clicking to select multiple items">
|
|
87 <options from_file="msgfplus_mods.loc">
|
|
88 <column name="name" index="0" />
|
|
89 <column name="value" index="2" />
|
|
90 </options>
|
|
91 </param>
|
|
92
|
|
93 <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">
|
|
94 <param name="custom_mod" type="text">
|
|
95 </param>
|
|
96 </repeat>
|
|
97
|
|
98
|
|
99
|
|
100 <param name="missed_cleavages" type="select" format="text" help="Allow peptides to contain up to this many missed enzyme cleavage sites">
|
|
101 <label>Missed Cleavages Allowed</label>
|
|
102 <option value="0">0</option>
|
|
103 <option value="1">1</option>
|
|
104 <option value="2">2</option>
|
|
105 </param>
|
|
106
|
|
107 <param name="enzyme" type="select" format="text">
|
|
108 <label>Enzyme</label>
|
|
109 <option value="Trypsin">Trypsin</option>
|
|
110 </param>
|
|
111
|
|
112 <param name="instrument" type="select" format="text">
|
|
113 <label>Instrument Type</label>
|
|
114 <option value="2">TOF</option>
|
|
115 <option value="0">Low-res LCQ/LTQ</option>
|
|
116 <option value="1">High-res LTQ</option>
|
|
117 </param>
|
|
118
|
|
119 <param name="fragment_ion_tol" help="Fragment Ion Tolerance in Daltons" type="float" value="0.65" min="0" max="10000" label="Fragment ion tolerance"/>
|
|
120
|
|
121 <param name="precursor_ion_tol" help="Precursor Ion Tolerance (Da or ppm)" type="float" value="100" min="0" max="10000" label="Precursor ion tolerance"/>
|
|
122 <param name="precursor_tolu" type="select" format="text">
|
|
123 <label>Precursor Ion Tolerance Units</label>
|
|
124 <option value="ppm">ppm</option>
|
|
125 <option value="Da">Da</option>
|
|
126 </param>
|
|
127
|
|
128 </inputs>
|
|
129
|
|
130
|
|
131 <outputs>
|
|
132 <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"/>
|
|
133 </outputs>
|
|
134
|
|
135
|
|
136 <help>
|
|
137
|
|
138 **What it does**
|
|
139
|
|
140 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.
|
|
141
|
|
142 ----
|
|
143
|
|
144 **References**
|
|
145
|
|
146 Please see http://proteomics.ucsd.edu/Software/MSGFPlus.html for details of the MSGFPlus search engine and references describing its algorithm
|
|
147
|
|
148 </help>
|
|
149
|
|
150 </tool>
|