|
0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
|
2 <tool id="TransformationEvaluation" name="TransformationEvaluation" version="2.0.0">
|
|
|
3 <description>Applies a transformation to a range of values</description>
|
|
|
4 <macros>
|
|
|
5 <token name="@EXECUTABLE@">TransformationEvaluation</token>
|
|
|
6 <import>macros.xml</import>
|
|
|
7 </macros>
|
|
|
8 <expand macro="stdio"/>
|
|
|
9 <expand macro="requirements"/>
|
|
|
10 <command>TransformationEvaluation
|
|
|
11
|
|
|
12 #if $param_in:
|
|
|
13 -in $param_in
|
|
|
14 #end if
|
|
|
15 #if $param_out:
|
|
|
16 -out $param_out
|
|
|
17 #end if
|
|
|
18 #if $param_min:
|
|
|
19 -min $param_min
|
|
|
20 #end if
|
|
|
21 #if $param_max:
|
|
|
22 -max $param_max
|
|
|
23 #end if
|
|
|
24 #if $param_step:
|
|
|
25 -step $param_step
|
|
|
26 #end if
|
|
|
27 -threads \${GALAXY_SLOTS:-24}
|
|
|
28 #if $adv_opts.adv_opts_selector=='advanced':
|
|
|
29 #if $adv_opts.param_force:
|
|
|
30 -force
|
|
|
31 #end if
|
|
|
32 #end if
|
|
|
33 </command>
|
|
|
34 <inputs>
|
|
|
35 <param name="param_in" type="data" format="trafoxml" optional="False" label="Input file containing the transformation description" help="(-in) "/>
|
|
|
36 <param name="param_min" type="float" value="0.0" label="Minimum value to transform" help="(-min) "/>
|
|
|
37 <param name="param_max" type="float" value="0.0" label="Maximum value to transform (if at or below 'min', select a suitable maximum based on the transformation description)" help="(-max) "/>
|
|
|
38 <param name="param_step" type="float" min="0.001" optional="True" value="1.0" label="Step size between 'min' and 'max'" help="(-step) "/>
|
|
|
39 <expand macro="advanced_options">
|
|
|
40 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
|
41 </expand>
|
|
|
42 </inputs>
|
|
|
43 <outputs>
|
|
|
44 <data name="param_out" format="trafoxml"/>
|
|
|
45 </outputs>
|
|
|
46 <help>**What it does**
|
|
|
47
|
|
|
48 Applies a transformation to a range of values
|
|
|
49
|
|
|
50
|
|
|
51 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_TransformationEvaluation.html</help>
|
|
|
52 <expand macro="references"/>
|
|
|
53 </tool>
|