view TransformationEvaluation.xml @ 0:3d84209d3178 draft

Uploaded
author bgruening
date Fri, 10 Oct 2014 18:20:03 -0400
parents
children 6ead64a594bd
line wrap: on
line source

<?xml version='1.0' encoding='UTF-8'?>
<tool id="TransformationEvaluation" name="TransformationEvaluation" version="1.12.0">
  <description>Applies a transformation to a range of values</description>
  <macros>
    <token name="@EXECUTABLE@">TransformationEvaluation</token>
    <import>macros.xml</import>
  </macros>
  <expand macro="stdio"/>
  <expand macro="requirements"/>
  <command>TransformationEvaluation

-in ${param_in}
-out ${param_out}
-min ${param_min}
-max ${param_max}
-step ${param_step}
-threads \${GALAXY_SLOTS:-24} 
</command>
  <inputs>
    <param name="param_in" type="data" format="" optional="False" label="Input file containing the transformation description" help="(-in)"/>
    <param name="param_min" type="float" value="0.0" label="Minimum value to transform" help="(-min)"/>
    <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)"/>
    <param name="param_step" type="float" min="0.001" optional="True" value="1.0" label="Step size between 'min' and 'max'" help="(-step)"/>
  </inputs>
  <outputs>
    <data name="param_out" label="Output file containing original and transformed values; if empty, output is written to the screen" format="data"/>
  </outputs>
  <help>**What it does**

Applies a transformation to a range of values


For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_TransformationEvaluation.html

@REFERENCES@
</help>
</tool>