view humann2_split_stratified_table.xml @ 5:93adca140c9a 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 07:02:08 +0000
parents 28763c8b43f8
children
line wrap: on
line source

<tool id="humann2_split_stratified_table" name="Split stratified table" version="@WRAPPER_VERSION@.1">
    <description></description>
    <macros>
        <import>humann2_macros.xml</import>
    </macros>
    <expand macro="stdio"/>
    <expand macro="requirements"/>
    <expand macro="version"/>
    <command detect_errors="exit_code"><![CDATA[
humann2_split_stratified_table
    --input '$input'
    --output 'output'
    ]]></command>
    <inputs>
        <param argument="--input" type="data" format="tsv,tabular,biom1" label="Stratified input table"/>
    </inputs>
    <outputs>
        <data format="tsv" name="stratified" from_work_dir="output/*_stratified*" label="${tool.name} on ${on_string}: Stratified"/>
        <data format="tsv" name="unstratified" from_work_dir="output/*_unstratified*" label="${tool.name} on ${on_string}: Unstratified"/>
    </outputs>
    <tests>
        <test>
            <param name="input" value="demo_genefamilies.tsv"/>
            <output name="stratified" md5="308551b7ad06f6704d3dbb47db341089"/>
            <output name="unstratified" md5="28a7254bd88afd42bdb4e41b6ae4253e"/>
        </test>
    </tests>
    <help><![CDATA[
@HELP_HEADER@

This utility will split a table into two files (one stratified and one unstratified).
    ]]></help>
    <expand macro="citations"/>
</tool>