view humann2_reduce_table.xml @ 6:e0b670a43758 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2 commit 8d953926efdf23d8c3fb8719341dff51a55a92f2"
author iuc
date Sun, 28 Mar 2021 06:58:45 +0000
parents 7f7cc8d4d6b7
children
line wrap: on
line source

<tool id="humann2_reduce_table" name="Reduce" version="@WRAPPER_VERSION@.1">
    <description>a HUMAnN2 generated table</description>
    <macros>
        <import>humann2_macros.xml</import>
    </macros>
    <expand macro="stdio"/>
    <expand macro="requirements"/>
    <expand macro="version"/>
    <command detect_errors="exit_code"><![CDATA[
humann2_reduce_table
    --input '$input'
    -o '$output_table'
    --function '$function'
    --sort-by '$sort'
    ]]></command>
    <inputs>
        <param argument="--input" type="data" format="tsv,tabular" label="Gene/pathway table"/>
        <param argument="--function" type="select" label="Function to apply">
            <option value="max" selected="true">Max</option>
            <option value="sum">Sum</option>
            <option value="mean">Mean</option>
            <option value="min">Min</option>
        </param>
        <param name="sort" type="select" label="How to sort the output" argument="--sort-by">
            <option value="name" selected="true">Name</option>
            <option value="value">value</option>
            <option value="level">level</option>
        </param>
    </inputs>
    <outputs>
        <data format="tsv" name="output_table" label="${tool.name} on ${on_string}: Reduced table" />
    </outputs>
    <tests>
        <test>
            <param name="input" value="demo_genefamilies.tsv"/>
            <param name="function" value="max"/>
            <param name="sort" value="name"/>
            <output name="output_table" file="max_reduced_gene_family_abundance.tsv"/>
        </test>
    </tests>
    <help><![CDATA[
@HELP_HEADER@

Reduce HUMAnN2 table is a tool to reduce the table given a function (max, sum, mean or min).
    ]]></help>
    <expand macro="citations"/>
</tool>