Mercurial > repos > iuc > krakentools_combine_kreports
diff combine_kreports.xml @ 0:d65105d99074 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/krakentools commit 28a15bb06175426ba161f346dff983f3cdd0fc10
author | iuc |
---|---|
date | Mon, 13 Feb 2023 10:23:11 +0000 |
parents | |
children | 4960abe31b4d |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/combine_kreports.xml Mon Feb 13 10:23:11 2023 +0000 @@ -0,0 +1,70 @@ +<tool id="krakentools_combine_kreports" name="Krakentools: Combine multiple Kraken reports" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> + <description>into a combined report file</description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="biotools"/> + <expand macro="requirements"/> + <expand macro="version"/> + <command detect_errors="exit_code"><![CDATA[ +combine_kreports.py + --reports + #for $report in $reports + '$report' + #end for + --output '$output' + $display_headers + $only_combined + ]]></command> + <inputs> + <param argument="--reports" type="data" multiple="true" format="tabular" label="Kraken report file(s)" /> + <param name="display_headers" type="boolean" checked="true" truevalue="--display-headers" falsevalue="--no-headers" label="display headers in output"/> + <param name="only_combined" type="boolean" checked="false" truevalue="--only-combined" falsevalue="" label="display only combined read counts and percentages"/> + </inputs> + <outputs> + <data name="output" format="tabular" /> + </outputs> + <tests> + <test> + <param name="reports" value="beta_kreport_1.tabular,beta_kreport_3.tabular"/> + <param name="display_headers" value="--no-headers"/> + <output name="output" file="combined_kreport.tabular"/> + </test> + <test> + <param name="reports" value="beta_kreport_1.tabular,beta_kreport_3.tabular"/> + <param name="display_headers" value="--no-headers"/> + <param name="only_combined" value="--only-combined"/> + <output name="output" file="only_combined_count.tabular"/> + </test> + </tests> + <help><![CDATA[ +KrakenTools is a suite of scripts to be used alongside the Kraken, KrakenUniq, Kraken 2, or Bracken programs. These scripts are designed to help Kraken users with downstream analysis of Kraken results. This script combines multiple Kraken reports into a combined report file. + +Input +------ +Kraken-style reports to combine + +Output +------ +Combine Kraken reports + +Input file format (tab-delimited) + - percentage of total reads + - number of reads (including reads within subtree) + - number of reads (only at this level) + - taxonomic classification level (U, D, P, C, O, F, G, S,...etc) + - NCBI taxonomic ID + - name of level + +Output file format (tab-delimited) + - percentage of total reads (for summed reads) + - combined number of reads (including reads within subtree) + - combined number of reads (only at this level) + - S1_all_reads, S1_lvl_reads, S2_all_reads, S2_lvl_reads, ...etc. + - taxonomic classification level (U, D, P, C, O, F, G, S,...etc) + - NCBI taxonomic ID + - name of level + + ]]></help> + <expand macro="citations"/> +</tool>