Mercurial > repos > jpayne > table_ops
diff table-summary.xml @ 13:746091a78780
planemo upload
author | jpayne |
---|---|
date | Fri, 09 Mar 2018 11:14:02 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/table-summary.xml Fri Mar 09 11:14:02 2018 -0500 @@ -0,0 +1,28 @@ +<tool id="table-summary" name="Summarize a tabular dataset" version="0.1.0"> + <description>by counting unique values in columns</description> + <requirements> + <!-- <requirement type="package" version="3.4">python</requirement> --> + </requirements> + <command detect_errors="exit_code"><![CDATA[ + python $__tool_directory__/table-summarize.py $table > $summary + ]]></command> + <inputs> + <param name="table" type="data" format="tsv" /> + </inputs> + <outputs> + <data name="summary" format="txt" label="Summary" /> + </outputs> + + <tests> + <test> + <param name="table" value="summary_test.txt" /> + <output name="summary" value="summary.txt" /> + </test> + </tests> + <help><![CDATA[ + Summarize tabular results by counting up unique values in columns. + ]]></help> + + <citations> + </citations> +</tool> \ No newline at end of file