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