|
0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
|
2 <tool id="TMTAnalyzer" name="TMTAnalyzer" version="1.12.0">
|
|
|
3 <description>Calculates TMT quantitative values for peptides</description>
|
|
|
4 <macros>
|
|
|
5 <token name="@EXECUTABLE@">TMTAnalyzer</token>
|
|
|
6 <import>macros.xml</import>
|
|
|
7 </macros>
|
|
|
8 <expand macro="stdio"/>
|
|
|
9 <expand macro="requirements"/>
|
|
|
10 <command>TMTAnalyzer
|
|
|
11
|
|
|
12 -in ${param_in}
|
|
|
13 -out ${param_out}
|
|
|
14 -out_stats ${param_out_stats}
|
|
|
15 -threads \${GALAXY_SLOTS:-24}
|
|
|
16 -id_pool ${param_id_pool}
|
|
|
17 -algorithm:Extraction:select_activation ${param_select_activation}
|
|
|
18 -algorithm:Extraction:reporter_mass_shift ${param_reporter_mass_shift}
|
|
|
19 -algorithm:Extraction:channel_active ${param_channel_active}
|
|
|
20 -algorithm:Quantification:channel_reference ${param_channel_reference}
|
|
|
21 #if $adv_opts.adv_opts_selector=='advanced':
|
|
|
22 -out_mzq ${adv_opts.param_out_mzq}
|
|
|
23 -algorithm:Quantification:isotope_correction:tmt-6plex ${adv_opts.param_tmt-6plex}
|
|
|
24 ${adv_opts.param_do_normalization}
|
|
|
25 -algorithm:MetaInformation:Program ${adv_opts.param_Program}
|
|
|
26 #end if
|
|
|
27 </command>
|
|
|
28 <inputs>
|
|
|
29 <param name="param_in" type="data" format="mzML" optional="False" label="input raw/picked data file " help="(-in)"/>
|
|
|
30 <param name="param_id_pool" type="text" size="20" label="ID pool file to DocumentID's for all generated output files. Disabled by default. (Set to 'main' to use /home/thouwaar/Projects/OpenMS/share/OpenMS/IDPool/IDPool.txt)" help="(-id_pool)"/>
|
|
|
31 <param name="param_select_activation" type="select" optional="True" value="High-energy collision-induced dissociation" label="Operate only on MSn scans where any of its precursors features a certain activation method (usually HCD for iTRAQ). Set to empty string if you want to disable filtering." help="(-select_activation)">
|
|
|
32 <option value="Collision-induced dissociation">Collision-induced dissociation</option>
|
|
|
33 <option value="Post-source decay">Post-source decay</option>
|
|
|
34 <option value="Plasma desorption">Plasma desorption</option>
|
|
|
35 <option value="Surface-induced dissociation">Surface-induced dissociation</option>
|
|
|
36 <option value="Blackbody infrared radiative dissociation">Blackbody infrared radiative dissociation</option>
|
|
|
37 <option value="Electron capture dissociation">Electron capture dissociation</option>
|
|
|
38 <option value="Infrared multiphoton dissociation">Infrared multiphoton dissociation</option>
|
|
|
39 <option value="Sustained off-resonance irradiation">Sustained off-resonance irradiation</option>
|
|
|
40 <option value="High-energy collision-induced dissociation">High-energy collision-induced dissociation</option>
|
|
|
41 <option value="Low-energy collision-induced dissociation">Low-energy collision-induced dissociation</option>
|
|
|
42 <option value="Photodissociation">Photodissociation</option>
|
|
|
43 <option value="Electron transfer dissociation">Electron transfer dissociation</option>
|
|
|
44 <option value=""></option>
|
|
|
45 </param>
|
|
|
46 <param name="param_reporter_mass_shift" type="float" min="1e-08" max="0.5" optional="True" value="0.1" label="Allowed shift (left to right) in Da from the expected position." help="(-reporter_mass_shift)"/>
|
|
|
47 <param name="param_channel_active" type="text" size="20" value="126:liver 131:lung" label="Each channel that was used in the experiment and its description (126-131 for TMT-6-plex) in format <channel>:<name>, e.g. "114:myref","115:liver"." help="(-channel_active)"/>
|
|
|
48 <param name="param_channel_reference" type="integer" min="126" max="131" optional="True" value="126" label="Number of the reference channel (126-131)." help="(-channel_reference)"/>
|
|
|
49 <expand macro="advanced_options">
|
|
|
50 <param name="param_tmt-6plex" type="text" size="20" value="126:0/0/0/0 127:0/0/0/0 128:0/0/0/0 129:0/0/0/0 130:0/0/0/0 131:0/0/0/0" label="Override default values (see Documentation); use the following format: <channel>:<-2Da>/<-1Da>/<+1Da>/<+2Da> ; e.g. '126:0/0.3/4/0' , '128:0.1/0.3/3/0.2'." help="(-tmt-6plex)"/>
|
|
|
51 <param name="param_do_normalization" type="boolean" truevalue="-algorithm:Quantification:do_normalization true" falsevalue="-algorithm:Quantification:do_normalization false" checked="false" optional="True" label="Normalize channels? Done by using the Median of Ratios (every channel / Reference). Also the ratio of medians (from any channel and reference) is provided as control measure!" help="(-do_normalization)"/>
|
|
|
52 <param name="param_Program" type="text" size="20" value="OpenMS::TMTAnalyzer" label="" help="(-Program)"/>
|
|
|
53 </expand>
|
|
|
54 </inputs>
|
|
|
55 <outputs>
|
|
|
56 <data name="param_out" label="output consensusXML file with quantitative information" format="consensusXML"/>
|
|
|
57 <data name="param_out_mzq" label="Optional output file of MzQuantML." format="data"/>
|
|
|
58 <data name="param_out_stats" label="output statistics as tab-separated file (readable by R or Excel or ...)" format="data"/>
|
|
|
59 </outputs>
|
|
|
60 <help>**What it does**
|
|
|
61
|
|
|
62 Calculates TMT quantitative values for peptides
|
|
|
63
|
|
|
64
|
|
|
65 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_TMTAnalyzer.html
|
|
|
66
|
|
|
67 @REFERENCES@
|
|
|
68 </help>
|
|
|
69 </tool>
|