comparison humann2_renorm_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_renorm_table" name="Renormalize" 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_renorm_table --version
14 ]]>
15 </version_command>
16
17 <command><![CDATA[
18 humann2_renorm_table
19 -i $input_table
20 -o $output_table
21 --norm $norm
22 ]]></command>
23
24 <inputs>
25 <param name="input_table" type="data" format="tsv" label="Gene/pathway table" help="(-i)"/>
26
27 <param name="norm" type="select" label="Normalization scheme" help="(--norm)">
28 <option value="cpm" selected="true">Copies per million</option>
29 <option value="relab">Relative abundance</option>
30 </param>
31 </inputs>
32
33 <outputs>
34 <data format="tsv" name="output_table" label="${tool.name} on ${on_string}: Normalized table" />
35 </outputs>
36
37 <tests>
38 <test>
39 <param name="input_table" value="expected_pathway_abundance.tsv"/>
40 <param name="norm" value="cpm"/>
41 <output name="output_table" file="cpm_renormalized_pathway_abundance.tsv"/>
42 </test>
43 <test>
44 <param name="input_table" value="expected_pathway_abundance.tsv"/>
45 <param name="norm" value="relab"/>
46 <output name="output_table" file="relab_renormalized_pathway_abundance.tsv"/>
47 </test>
48 </tests>
49
50 <help><![CDATA[
51 **What it does**
52
53 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>`_.
54
55 Renorm HUMAnN2 table is a tool to renormalize a table, either in copies per million or in relative abundance. Each level of a stratified table will be normalized using the desired scheme.
56
57 ]]></help>
58
59 <expand macro="citations"/>
60 </tool>