Mercurial > repos > iuc > humann2_split_table
view humann2_split_table.xml @ 5:63cc5fd0f8d6 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2 commit 55eb503f50c54695ec36c3d4671c2b3e64d05f40"
author | iuc |
---|---|
date | Fri, 05 Feb 2021 18:23:49 +0000 |
parents | ace84aac38ce |
children |
line wrap: on
line source
<tool id="humann2_split_table" name="Split" 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_split_table --input '$input' -o 'output' #if $taxonomy_index --taxonomy_index '$taxonomy_index' #end if #if $taxonomy_level --taxonomy_level '$taxonomy_level' #end if ]]></command> <inputs> <param argument="--input" type="data" format="tsv,tabular,biom1" label="Gene table to split"/> <param argument="--taxonomy_index" type="text" label="Index of the gene in the taxonomy data" optional="true"/> <param argument="--taxonomy_level" type="select" label="Level of taxonomy for the output" optional="true" help="if input is from picrust metagenome_contributions.py"> <option value="Kingdom">Kingdom</option> <option value="Phylum">Phylum</option> <option value="Class">Class</option> <option value="Order">Order</option> <option value="Family">Family</option> <option value="Genus">Genus</option> <option value="Species">Species</option> </param> </inputs> <outputs> <collection type="list" name="split_tables" label="${tool.name} on ${on_string}: Split tables"> <discover_datasets pattern="__designation_and_ext__" directory="output"/> </collection> </outputs> <tests> <test> <param name="input" value="joined_pathway_coverage_abundance.tsv"/> <output_collection name="split_tables" type="list" > <element name="demo_Coverage" file="demo_Coverage.tsv" /> <element name="demo_Abundance" file="demo_Abundance.tsv" /> </output_collection> </test> </tests> <help><![CDATA[ @HELP_HEADER@ Split HUMAnN2 table is a tool to split a gene table with multiple columns. This file can have been generated with the join table tool. ]]></help> <expand macro="citations"/> </tool>