0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="MRMMapper" name="MRMMapper" version="2.0.0">
|
|
3 <description>MRMMapper maps measured chromatograms (mzML) and the transitions used (TraML)</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">MRMMapper</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>MRMMapper
|
|
11
|
|
12 #if $param_in:
|
|
13 -in $param_in
|
|
14 #end if
|
|
15 #if $param_tr:
|
|
16 -tr $param_tr
|
|
17 #end if
|
|
18 #if $param_out:
|
|
19 -out $param_out
|
|
20 #end if
|
|
21 #if $param_precursor_tolerance:
|
|
22 -precursor_tolerance $param_precursor_tolerance
|
|
23 #end if
|
|
24 #if $param_product_tolerance:
|
|
25 -product_tolerance $param_product_tolerance
|
|
26 #end if
|
|
27 #if $param_no_strict:
|
|
28 -no-strict
|
|
29 #end if
|
|
30 -threads \${GALAXY_SLOTS:-24}
|
|
31 #if $adv_opts.adv_opts_selector=='advanced':
|
|
32 #if $adv_opts.param_force:
|
|
33 -force
|
|
34 #end if
|
|
35 #end if
|
|
36 </command>
|
|
37 <inputs>
|
|
38 <param name="param_in" type="data" format="mzml" optional="False" label="Input file containing chromatograms (converted mzXML file)" help="(-in) "/>
|
|
39 <param name="param_tr" type="data" format="traml" optional="False" label="transition file" help="(-tr) "/>
|
|
40 <param name="param_precursor_tolerance" type="float" value="0.1" label="Precursor tolerance when mapping (in Th)" help="(-precursor_tolerance) "/>
|
|
41 <param name="param_product_tolerance" type="float" value="0.1" label="Product tolerance when mapping (in Th)" help="(-product_tolerance) "/>
|
|
42 <param name="param_no_strict" type="boolean" truevalue="-no-strict" falsevalue="" checked="false" optional="True" label="run in non-strict mode and allow some chromatograms to not be mapped" help="(-no-strict) "/>
|
|
43 <expand macro="advanced_options">
|
|
44 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
45 </expand>
|
|
46 </inputs>
|
|
47 <outputs>
|
|
48 <data name="param_out" format="mzml"/>
|
|
49 </outputs>
|
|
50 <help>**What it does**
|
|
51
|
|
52 MRMMapper maps measured chromatograms (mzML) and the transitions used (TraML)
|
|
53
|
|
54
|
|
55 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_MRMMapper.html</help>
|
|
56 <expand macro="references"/>
|
|
57 </tool>
|