comparison MapRTTransformer.xml @ 0:3d84209d3178 draft

Uploaded
author bgruening
date Fri, 10 Oct 2014 18:20:03 -0400
parents
children 6ead64a594bd
comparison
equal deleted inserted replaced
-1:000000000000 0:3d84209d3178
1 <?xml version='1.0' encoding='UTF-8'?>
2 <tool id="MapRTTransformer" name="MapRTTransformer" version="1.12.0">
3 <description>Applies retention time transformations to maps.</description>
4 <macros>
5 <token name="@EXECUTABLE@">MapRTTransformer</token>
6 <import>macros.xml</import>
7 </macros>
8 <expand macro="stdio"/>
9 <expand macro="requirements"/>
10 <command>MapRTTransformer
11
12 -in ${param_in}
13 -out ${param_out}
14 -trafo_in ${param_trafo_in}
15 -trafo_out ${param_trafo_out}
16 ${param_invert}
17 -threads \${GALAXY_SLOTS:-24}
18 -model:type ${param_type}
19 ${param_symmetric_regression}
20 -model:interpolated:interpolation_type ${param_interpolation_type}
21 </command>
22 <inputs>
23 <param name="param_in" type="data" format="mzML,featureXML,consensusXML,idXML" optional="True" size="20" label="Input files to transform (separated by blanks)" help="(-in)"/>
24 <param name="param_trafo_in" type="data" format="" optional="False" size="20" label="Transformations to apply (files separated by blanks)" help="(-trafo_in)"/>
25 <param name="param_invert" type="boolean" truevalue="-invert true" falsevalue="-invert false" checked="false" optional="True" label="Invert transformations (approximatively) before applying them" help="(-invert)"/>
26 <param name="param_type" type="select" optional="True" value="none" label="Type of model" help="(-type)">
27 <option value="none">none</option>
28 <option value="linear">linear</option>
29 <option value="b_spline">b_spline</option>
30 <option value="interpolated">interpolated</option>
31 </param>
32 <param name="param_symmetric_regression" type="boolean" truevalue="-model:linear:symmetric_regression true" falsevalue="-model:linear:symmetric_regression false" checked="false" optional="True" label="Perform linear regression on 'y - x' vs. 'y + x', instead of on 'y' vs. 'x'." help="(-symmetric_regression)"/>
33 <param name="param_interpolation_type" type="select" optional="True" value="cspline" label="Type of interpolation to apply." help="(-interpolation_type)">
34 <option value="linear">linear</option>
35 <option value="cspline">cspline</option>
36 <option value="akima">akima</option>
37 </param>
38 </inputs>
39 <outputs>
40 <data name="param_out" label="Output files separated by blanks. Either this option or 'trafo_out' have to be provided. They can be used together." format="idXML">
41 <change_format>
42 <when input="param_out_type" value="mzML" format="mzML"/>
43 <when input="param_out_type" value="featureXML" format="featureXML"/>
44 <when input="param_out_type" value="consensusXML" format="consensusXML"/>
45 </change_format>
46 </data>
47 <data name="param_trafo_out" label="Transformation output files separated by blanks. Either this option or 'out' have to be provided. They can be used together." format="data"/>
48 </outputs>
49 <help>**What it does**
50
51 Applies retention time transformations to maps.
52
53
54 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_MapRTTransformer.html
55
56 @REFERENCES@
57 </help>
58 </tool>