0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="MRMPairFinder" name="MRMPairFinder" version="2.0.0">
|
|
3 <description>Util which can be used to evaluate labeled pair ratios on MRM features.</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">MRMPairFinder</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>MRMPairFinder
|
|
11
|
|
12 #if $param_in:
|
|
13 -in $param_in
|
|
14 #end if
|
|
15 #if $param_pair_in:
|
|
16 -pair_in $param_pair_in
|
|
17 #end if
|
|
18 #if $param_out:
|
|
19 -out $param_out
|
|
20 #end if
|
|
21 #if $param_feature_out:
|
|
22 -feature_out $param_feature_out
|
|
23 #end if
|
|
24 -threads \${GALAXY_SLOTS:-24}
|
|
25 #if $adv_opts.adv_opts_selector=='advanced':
|
|
26 #if $adv_opts.param_mass_tolerance:
|
|
27 -mass_tolerance $adv_opts.param_mass_tolerance
|
|
28 #end if
|
|
29 #if $adv_opts.param_RT_tolerance:
|
|
30 -RT_tolerance $adv_opts.param_RT_tolerance
|
|
31 #end if
|
|
32 #if $adv_opts.param_RT_pair_tolerance:
|
|
33 -RT_pair_tolerance $adv_opts.param_RT_pair_tolerance
|
|
34 #end if
|
|
35 #if $adv_opts.param_force:
|
|
36 -force
|
|
37 #end if
|
|
38 #end if
|
|
39 </command>
|
|
40 <inputs>
|
|
41 <param name="param_in" type="data" format="featurexml" optional="False" label="Input featureXML file containing the features of the MRM experiment spectra" help="(-in) "/>
|
|
42 <param name="param_pair_in" type="data" format="tabular" optional="False" label="Pair-file in the format: prec-m/z-light prec-m/z-heavy frag-m/z-light frag-m/z-heavy rt" help="(-pair_in) "/>
|
|
43 <expand macro="advanced_options">
|
|
44 <param name="param_mass_tolerance" type="float" min="0.0" optional="True" value="0.01" label="Precursor mass tolerance which is used for the pair finding and the matching of the given pair m/z values to the features" help="(-mass_tolerance) "/>
|
|
45 <param name="param_RT_tolerance" type="float" min="0.0" optional="True" value="200.0" label="Maximal deviation in RT dimension in seconds a feature can have when comparing to the RT values given in the pair file" help="(-RT_tolerance) "/>
|
|
46 <param name="param_RT_pair_tolerance" type="float" min="0.0" optional="True" value="5.0" label="Maximal deviation in RT dimension in seconds the two partners of a pair is allowed to have" help="(-RT_pair_tolerance) "/>
|
|
47 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
48 </expand>
|
|
49 </inputs>
|
|
50 <outputs>
|
|
51 <data name="param_out" format="consensusxml"/>
|
|
52 <data name="param_feature_out" format="featurexml"/>
|
|
53 </outputs>
|
|
54 <help>**What it does**
|
|
55
|
|
56 Util which can be used to evaluate labeled pair ratios on MRM features.
|
|
57
|
|
58
|
|
59 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_MRMPairFinder.html</help>
|
|
60 <expand macro="references"/>
|
|
61 </tool>
|