Mercurial > repos > iuc > biom_from_uc
view biom_from_uc.xml @ 2:2cdeed709bf4 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_format commit 4ca0a67fd4126f8b2a135b6cb7894042e980b39a"
author | iuc |
---|---|
date | Sat, 23 Oct 2021 21:29:56 +0000 |
parents | 26c9cf427dcd |
children | c82e077989ee |
line wrap: on
line source
<tool id="biom_from_uc" name="Create a BIOM table" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> <description>from a vsearch/uclust/usearch BIOM file</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <expand macro="version_command" /> <command detect_errors="exit_code"> <![CDATA[ biom from-uc --input-fp '$input_fp' --output-fp '$output_fp' ]]> </command> <inputs> <param name="input_fp" argument="--input-fp" type="data" format="txt" label="UC File" /> <param name="rep_set_fp" argument="--rep-set-fp" type="data" format="fasta" optional="true" label="Fasta file containing representative sequences with where sequences are labeled with OTU identifiers, and description fields contain original sequence identifiers" help="This output is created, for example, by vsearch with the --relabel_sha1 --relabel_keep options."/> </inputs> <outputs> <data format="biom1" name="output_fp"/> </outputs> <tests> <test> <param name="input_fp" value="uc_table.uc" /> <output name="output_fp" file="biom_from_uc.biom" compare="sim_size"/> </test> </tests> <help><![CDATA[ Create a BIOM table from a vsearch/uclust/usearch BIOM file. ]]></help> <expand macro="citations" /> </tool>