Mercurial > repos > bebatut > humann2
comparison humann2_join_tables.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_join_tables" name="Join" version="0.6.1"> | |
2 <description>HUMAnN2 generated tables</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_join_tables --version | |
14 ]]> | |
15 </version_command> | |
16 | |
17 <command><![CDATA[ | |
18 `mkdir tmp_dir` | |
19 | |
20 && | |
21 | |
22 #for $table in $input_tables | |
23 `cp $table.input_table tmp_dir` | |
24 #end for | |
25 | |
26 && | |
27 humann2_join_tables | |
28 -i "tmp_dir" | |
29 -o $joined_table | |
30 ]]></command> | |
31 | |
32 <inputs> | |
33 <repeat name="input_tables" title="Gene/pathway tables to join"> | |
34 <param name="input_table" type="data" format="tsv,tabular" multiple="true" label="Gene/pathway table" help=""/> | |
35 </repeat> | |
36 </inputs> | |
37 | |
38 <outputs> | |
39 <data format="tsv" name="joined_table" label="${tool.name} on ${on_string}: Joined table" /> | |
40 </outputs> | |
41 | |
42 <tests> | |
43 <test> | |
44 <param name="input_tables_0|input_table" value="expected_pathway_coverage.tsv"/> | |
45 <param name="input_tables_1|input_table" value="expected_pathway_abundance.tsv"/> | |
46 <output name="joined_table" file="joined_pathway_coverage_abundance.tsv"/> | |
47 </test> | |
48 </tests> | |
49 | |
50 <help><![CDATA[ | |
51 **What it does** | |
52 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>`_. | |
53 | |
54 Join HUMAnN2 tables is a tool to join gene or pathway tables of multiple samples into a single table. | |
55 ]]></help> | |
56 | |
57 <expand macro="citations"/> | |
58 </tool> |