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