Mercurial > repos > jpayne > table_ops
comparison table-summary.xml @ 13:746091a78780
planemo upload
author | jpayne |
---|---|
date | Fri, 09 Mar 2018 11:14:02 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
12:15230438f7f5 | 13:746091a78780 |
---|---|
1 <tool id="table-summary" name="Summarize a tabular dataset" version="0.1.0"> | |
2 <description>by counting unique values in columns</description> | |
3 <requirements> | |
4 <!-- <requirement type="package" version="3.4">python</requirement> --> | |
5 </requirements> | |
6 <command detect_errors="exit_code"><![CDATA[ | |
7 python $__tool_directory__/table-summarize.py $table > $summary | |
8 ]]></command> | |
9 <inputs> | |
10 <param name="table" type="data" format="tsv" /> | |
11 </inputs> | |
12 <outputs> | |
13 <data name="summary" format="txt" label="Summary" /> | |
14 </outputs> | |
15 | |
16 <tests> | |
17 <test> | |
18 <param name="table" value="summary_test.txt" /> | |
19 <output name="summary" value="summary.txt" /> | |
20 </test> | |
21 </tests> | |
22 <help><![CDATA[ | |
23 Summarize tabular results by counting up unique values in columns. | |
24 ]]></help> | |
25 | |
26 <citations> | |
27 </citations> | |
28 </tool> |