diff table-summary.xml @ 0:402b58f45844 draft default tip

planemo upload commit 9cc4dc1db55299bf92ec6bd359161ece4592bd16-dirty
author jpayne
date Mon, 08 Dec 2025 15:03:06 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/table-summary.xml	Mon Dec 08 15:03:06 2025 +0000
@@ -0,0 +1,28 @@
+<tool id="table-summary" name="Table Summarize: Summarize a tabular dataset" version="0.1.0">
+    <description>by counting unique values in columns</description>
+    <requirements>
+        <container type="docker">cfsanbiostatistics/tableops:latest</container>
+    </requirements>
+    <command detect_errors="exit_code"><![CDATA[
+        python $__tool_directory__/table-summarize.py $table > $summary
+    ]]></command>
+    <inputs>
+        <param name="table" type="data" format="tsv,tabular" />
+    </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