Mercurial > repos > iuc > phyloseq_from_dada2
view phyloseq_from_dada2.xml @ 1:b85ba18a8f36 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyloseq commit 7df921baa7aa8680421b9440a1cd6eaab1a15ce2
author | iuc |
---|---|
date | Fri, 09 Feb 2024 21:42:24 +0000 |
parents | 46a99bd1f10e |
children | 87064cb77a52 |
line wrap: on
line source
<tool id="phyloseq_from_dada2" name="Create phyloseq object" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> <description>from dada2 sequence and taxonomy tables</description> <macros> <import>macros.xml</import> </macros> <expand macro="bio_tools"/> <expand macro="requirements"/> <command detect_errors="exit_code"><![CDATA[ Rscript '${__tool_directory__}/phyloseq_from_dada2.R' --sequence_table '$sequence_table' --taxonomy_table '$taxonomy_table' --output '$output' ]]></command> <inputs> <param name="sequence_table" type="data" format="dada2_sequencetable" label="Sequence table" help="Produced by the dada2 removeBimeraDenovo tool"/> <param name="taxonomy_table" type="data" format="tabular" label="Taxonomy table" help="Produced by the dada2 assignTaxonomyAndAddSpecies tool"/> </inputs> <outputs> <data name="output" format="phyloseq"/> </outputs> <tests> <test> <param name="sequence_table" value="sequence_table.dada2_sequencetable" ftype="dada2_sequencetable"/> <param name="taxonomy_table" value="taxonomy_table.tabular" ftype="tabular"/> <output name="output" value="output.phyloseq" ftype="phyloseq" compare="sim_size"/> </test> </tests> <help> **What it does** Accepts a sequence table produced by the dada2 removeBimeraDenovo tool and a taxonomy table produced by the dada2 assignTaxonomyAndAddSpecies tool and uses them to create a phyloseq object which is output in a phyloseq dataset. </help> <expand macro="citations"/> </tool>