Mercurial > repos > jpayne > table_ops
comparison table-union.xml @ 0:f1f2497301d3
planemo upload
author | jpayne |
---|---|
date | Mon, 08 Jan 2018 11:19:54 -0500 |
parents | |
children | 9c8237621723 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f1f2497301d3 |
---|---|
1 <tool id="table-union" name="Merge tabular datasets" version="0.1.0"> | |
2 <requirements> | |
3 </requirements> | |
4 <command detect_errors="exit_code"><![CDATA[ | |
5 $__tool_directory__/table-union.py | |
6 #for $table in $tables | |
7 $table | |
8 #end for | |
9 > $combined_table | |
10 ]]></command> | |
11 <inputs> | |
12 <param name="tables" type="data_collection" format="tsv" collection_type="list" /> | |
13 </inputs> | |
14 <outputs> | |
15 <data name="combined_table" format="tsv" label="Combined table" /> | |
16 </outputs> | |
17 | |
18 <tests> | |
19 <test> | |
20 <param name="tables"> | |
21 <collection type="list"> | |
22 <element name="1" value="dingbat.tsv" /> | |
23 <element name="2" value="loki.tsv" /> | |
24 </collection> | |
25 </param> | |
26 <output name="combined_table" value="combined.tsv" /> | |
27 </test> | |
28 </tests> | |
29 <help><![CDATA[ | |
30 Concatenate a collection of TSV files wile preserving and unionizing headers. | |
31 ]]></help> | |
32 | |
33 <citations> | |
34 </citations> | |
35 </tool> |