comparison humann2_split_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_split_table" name="Split" 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_split_table --version
14 ]]>
15 </version_command>
16
17 <command><![CDATA[
18 humann2_split_table
19 -i $input_file
20 -o "output"
21 ]]></command>
22
23 <inputs>
24 <param name="input_file" type="data" format="tsv,biom" label="Table to split into multiple tables" help="(-i)"/>
25 </inputs>
26
27 <outputs>
28 <collection type="list" name="split_tables" label="${tool.name} on ${on_string}: Split tables">
29 <discover_datasets pattern="__designation_and_ext__" directory="output"/>
30 </collection>
31 </outputs>
32
33 <tests>
34 <test>
35 <param name="input_file" value="joined_pathway_coverage_abundance.tsv"/>
36 <output_collection name="split_tables" type="list" >
37 <element name="humann2_Abundance" file="split_joined_table_abundances.tsv" />
38 <element name="humann2_Coverage" file="split_joined_table_coverage.tsv" />
39 </output_collection>
40 </test>
41 </tests>
42
43 <help><![CDATA[
44 **What it does**
45
46 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>`_.
47
48 Split HUMAnN2 table is a tool to split a table with multiple columns. This file can have been generated with the join table tool.
49 ]]></help>
50
51 <expand macro="citations"/>
52 </tool>