changeset 0:daf911dac808 draft

Uploaded
author p.lucas
date Wed, 14 Apr 2021 12:23:00 +0000
parents
children 740c06c4ed3b
files uniq_and_count.xml
diffstat 1 files changed, 18 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/uniq_and_count.xml	Wed Apr 14 12:23:00 2021 +0000
@@ -0,0 +1,18 @@
+<tool id="uniq_and_count" name="count redundant" version="0.1.0">
+    <description>Count redundant lines in file.</description>
+    <stdio>
+        <exit_code range="1:" />
+    </stdio>
+    <command>
+        uniq -c $input > $output
+    </command>
+    <inputs>
+        <param type="data" name="input" format="tab" label="Select your tab file :" />
+    </inputs>
+    <outputs>
+        <data name="output" format="tab" />
+    </outputs>
+    <help>
+    Insert you tab delimited file to count redundant lines.
+    </help>
+</tool>