view roi_metrics.xml @ 0:61d9bdb6d519 draft

Uploaded
author holtgrewe
date Thu, 18 Apr 2013 08:03:38 -0400
parents
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="roi_metrics" name="ROI Metrics Computation">
    <description>Compute metrics for records in an ROI file.</description>

    <command interpreter="Rscript">
    roi_metrics.Rscript -i $input -o $output
    </command>

    <!--
      Input Files and Parameters
    -->
    <inputs>
        <param name="input" format="roi" type="data"
               label="input ROI"
               help="ROI file to compute metrics for." />
    </inputs>

    <!--
      Output Files
    -->
    <outputs>
        <data name="output" format="roi" label="${input.name} +metrics" />
    </outputs>

    <!--
      Recognize errors by return code and not output to stderr.
    -->
    <stdio>
        <exit_code range="1:" level="fatal" />
        <exit_code range=":-1" level="fatal" />
    </stdio>

    <!--
      Tool Help
    -->
    <help>No help yet.</help>
</tool>