Mercurial > repos > bebatut > humann2
comparison humann2_reduce_table.xml @ 0:3d6f37e7e3a8 draft
planemo upload for repository https://github.com/ASaiM/galaxytools/tree/master/tools/humann2/ commit 7aadbbdef6da644837f62ea428cb859eeff34f04-dirty
author | bebatut |
---|---|
date | Thu, 26 May 2016 10:20:59 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:3d6f37e7e3a8 |
---|---|
1 <tool id="humann2_reduce_table" name="Reduce" version="0.6.1"> | |
2 <description>a HUMAnN2 generated table</description> | |
3 | |
4 <macros> | |
5 <import>humann2_macros.xml</import> | |
6 </macros> | |
7 | |
8 <expand macro="requirements"/> | |
9 <expand macro="stdio"/> | |
10 | |
11 <version_command> | |
12 <![CDATA[ | |
13 humann2_reduce_table --version | |
14 ]]> | |
15 </version_command> | |
16 | |
17 <command><![CDATA[ | |
18 humann2_reduce_table | |
19 -i $input_table | |
20 -o $output_table | |
21 --function $function | |
22 --sort-by $sort | |
23 ]]></command> | |
24 | |
25 <inputs> | |
26 <param name="input_table" type="data" format="tsv" label="Gene/pathway table" help="(-i)"/> | |
27 | |
28 <param name="function" type="select" label="Function to apply" help="(--function)"> | |
29 <option value="max" selected="true">Max</option> | |
30 <option value="sum">Sum</option> | |
31 <option value="mean">Mean</option> | |
32 <option value="min">Min</option> | |
33 </param> | |
34 | |
35 <param name="sort" type="select" label="How to sort the output" help="(--sort-by)"> | |
36 <option value="name" selected="true">Name</option> | |
37 <option value="value">value</option> | |
38 <option value="level">level</option> | |
39 </param> | |
40 </inputs> | |
41 | |
42 <outputs> | |
43 <data format="tsv" name="output_table" label="${tool.name} on ${on_string}: Reduced table" /> | |
44 </outputs> | |
45 | |
46 <tests> | |
47 <test> | |
48 <param name="input_table" value="expected_gene_family_abundance.tsv"/> | |
49 <param name="function" value="max"/> | |
50 <param name="sort" value="name"/> | |
51 <output name="output_table" file="max_reduced_gene_family_abundance.tsv"/> | |
52 </test> | |
53 </tests> | |
54 | |
55 <help><![CDATA[ | |
56 **What it does** | |
57 | |
58 HUMAnN is a pipeline for efficiently and accuretly profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data. `Read more about the tool <http://huttenhower.sph.harvard.edu/humann2/manual>`_. | |
59 | |
60 Reduce HUMAnN2 table is a tool to reduce the table given a function (max, sum, mean or min). | |
61 | |
62 HUMAnN is a pipeline for efficiently and accuretly profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data. `Read more about the tool <http://huttenhower.sph.harvard.edu/humann2/manual>`_. | |
63 | |
64 ]]></help> | |
65 | |
66 <expand macro="citations"/> | |
67 </tool> |