comparison MRMPairFinder.xml @ 0:db0f72c69932 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit fb85d488133bb2b5f483b52b2db0ac66038fafb8
author galaxyp
date Wed, 01 Mar 2017 12:36:42 -0500
parents
children dc370592432c
comparison
equal deleted inserted replaced
-1:000000000000 0:db0f72c69932
1 <?xml version='1.0' encoding='UTF-8'?>
2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
3 <!--Proposed Tool Section: [Utilities]-->
4 <tool id="MRMPairFinder" name="MRMPairFinder" version="2.1.0">
5 <description>Util which can be used to evaluate labeled pair ratios on MRM features.</description>
6 <macros>
7 <token name="@EXECUTABLE@">MRMPairFinder</token>
8 <import>macros.xml</import>
9 </macros>
10 <expand macro="references"/>
11 <expand macro="stdio"/>
12 <expand macro="requirements"/>
13 <command>MRMPairFinder
14
15 #if $param_in:
16 -in $param_in
17 #end if
18 #if $param_pair_in:
19 -pair_in $param_pair_in
20 #end if
21 #if $param_out:
22 -out $param_out
23 #end if
24 #if $param_feature_out:
25 -feature_out $param_feature_out
26 #end if
27 #if $adv_opts.adv_opts_selector=='advanced':
28 #if $adv_opts.param_mass_tolerance:
29 -mass_tolerance $adv_opts.param_mass_tolerance
30 #end if
31 #if $adv_opts.param_RT_tolerance:
32 -RT_tolerance $adv_opts.param_RT_tolerance
33 #end if
34 #if $adv_opts.param_RT_pair_tolerance:
35 -RT_pair_tolerance $adv_opts.param_RT_pair_tolerance
36 #end if
37 #if $adv_opts.param_force:
38 -force
39 #end if
40 #end if
41 </command>
42 <inputs>
43 <param name="param_in" type="data" format="featurexml" optional="False" label="Input featureXML file containing the features of the MRM experiment spectra" help="(-in) "/>
44 <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) "/>
45 <expand macro="advanced_options">
46 <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) "/>
47 <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) "/>
48 <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) "/>
49 <param name="param_force" display="radio" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
50 </expand>
51 </inputs>
52 <outputs>
53 <data name="param_out" format="consensusxml"/>
54 <data name="param_feature_out" format="featurexml"/>
55 </outputs>
56 <help>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 </tool>