Mercurial > repos > iuc > humann2_join_tables
comparison humann2_join_tables.xml @ 0:14d5bf0d63a0 draft
planemo upload for repository https://github.com/ASaiM/galaxytools/tree/master/tools/humann2/ commit b46aa969c01b7e5f4f133192899fa4da286ecf89-dirty
author | iuc |
---|---|
date | Mon, 13 Mar 2017 12:36:38 -0400 |
parents | |
children | 9ada8e95bdd0 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:14d5bf0d63a0 |
---|---|
1 <tool id="humann2_join_tables" name="Join" version="@WRAPPER_VERSION@.0"> | |
2 <description>HUMAnN2 generated tables</description> | |
3 <macros> | |
4 <import>humann2_macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements"/> | |
7 <expand macro="version"/> | |
8 <command detect_errors="exit_code"><![CDATA[ | |
9 mkdir tmp_dir | |
10 | |
11 && | |
12 | |
13 #for $table in $input_table | |
14 cp '$table' 'tmp_dir' && | |
15 #end for | |
16 | |
17 humann2_join_tables | |
18 -i 'tmp_dir' | |
19 -o '$joined_table' | |
20 ]]></command> | |
21 <inputs> | |
22 <param name="input_table" type="data" format="tsv,tabular" multiple="true" label="Gene/pathway table"/> | |
23 </inputs> | |
24 <outputs> | |
25 <data format="tsv" name="joined_table" label="${tool.name} on ${on_string}: Joined table" /> | |
26 </outputs> | |
27 <tests> | |
28 <test> | |
29 <param name="input_table" value="demo_pathabundance.tsv,demo_pathcoverage.tsv"/> | |
30 <output name="joined_table"> | |
31 <assert_contents> | |
32 <has_text text="PWY490-3: nitrate reduction VI (assimilatory)|unclassified" /> | |
33 <has_text text="PWY-1269: CMP-3-deoxy-D-manno-octulosonate biosynthesis I" /> | |
34 <has_text text="VALSYN-PWY: L-valine biosynthesis" /> | |
35 <has_text text="UNINTEGRATED|g__Bacteroides.s__Bacteroides_vulgatus" /> | |
36 </assert_contents> | |
37 </output> | |
38 </test> | |
39 </tests> | |
40 <help><![CDATA[ | |
41 @HELP_HEADER@ | |
42 | |
43 Join HUMAnN2 tables is a tool to join gene or pathway tables of multiple samples into a single table. | |
44 ]]></help> | |
45 <expand macro="citations"/> | |
46 </tool> |