Mercurial > repos > iuc > bracken
view est-abundance.xml @ 2:a5145865e467 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bracken commit 2a7a1f987c8fd07ae19140dd0ae86ff2a710de52"
author | iuc |
---|---|
date | Thu, 17 Oct 2019 15:50:37 -0400 |
parents | b7b1c8bf7ae0 |
children | e1d4cab2daea |
line wrap: on
line source
<tool id="est_abundance" name="Estimate Abundance at Taxonomic Level" version="@TOOL_VERSION@+galaxy0"> <description>Bayesian Reestimation of Abundance with KrakEN</description> <macros> <import>macros.xml</import> </macros> <edam_topics> <edam_topic>topic_3174</edam_topic> <edam_topic>topic_3697</edam_topic> </edam_topics> <edam_operations> <edam_operation>operation_2238</edam_operation> </edam_operations> <expand macro="requirements" /> <command detect_errors="exit_code"><![CDATA[ est_abundance.py -i '$input' -k '$kmer_distr.fields.path' -l $level -t $threshold -o '$report' ]]> </command> <inputs> <param name="input" type="data" format="tabular" label="Kraken report file" /> <param label="Select a Kmer distribution" name="kmer_distr" type="select"> <options from_data_table="bracken_databases"> <validator message="No database is available" type="no_options" /> </options> </param> <param name="level" type="select" label="Level" help="Level to push all reads to" > <option value="S" selected="true">Species</option> <option value="G">Genus</option> <option value="F">Family</option> <option value="O">Order</option> <option value="C">Class</option> <option value="P">Phylum</option> <option value="D">Domain</option> </param> <param name="threshold" type="integer" value="10" label="Number of mismatches allowed when matching tag" help="Threshold for the minimum number of reads kraken must assign to a classification for that classification to be considered in the final abundance estimation." /> </inputs> <outputs> <data name="report" format="tabular" label="${tool.name} on ${on_string}: Report" /> </outputs> <tests> <test> <param name="input" value="NC_003198.1_simulated_kraken_report.txt" ftype="tabular"/> <param name="level" value="S" /> <param name="bracken_database" value="test_entry"/> <output name="report" file="NC_003198.1_simulated_bracken_report.txt" ftype="tabular"/> </test> <test> <param name="input" value="NC_011750.1_simulated_kraken_report.txt" ftype="tabular"/> <param name="level" value="S" /> <param name="bracken_database" value="test_entry"/> <output name="report" file="NC_011750.1_simulated_bracken_report.txt" ftype="tabular"/> </test> </tests> <help> <![CDATA[ Documentation can be found at `site <http://ccb.jhu.edu/software/bracken/index.shtml?t=manual>`_. ]]></help> <expand macro="citations" /> </tool>