comparison uniq_and_count.xml @ 0:daf911dac808 draft

Uploaded
author p.lucas
date Wed, 14 Apr 2021 12:23:00 +0000
parents
children 740c06c4ed3b
comparison
equal deleted inserted replaced
-1:000000000000 0:daf911dac808
1 <tool id="uniq_and_count" name="count redundant" version="0.1.0">
2 <description>Count redundant lines in file.</description>
3 <stdio>
4 <exit_code range="1:" />
5 </stdio>
6 <command>
7 uniq -c $input > $output
8 </command>
9 <inputs>
10 <param type="data" name="input" format="tab" label="Select your tab file :" />
11 </inputs>
12 <outputs>
13 <data name="output" format="tab" />
14 </outputs>
15 <help>
16 Insert you tab delimited file to count redundant lines.
17 </help>
18 </tool>