Mercurial > repos > p.lucas > uniq_and_count
comparison uniq_and_count.xml @ 2:8843bcb38558 draft default tip
Uploaded
author | p.lucas |
---|---|
date | Wed, 14 Apr 2021 14:10:39 +0000 |
parents | 740c06c4ed3b |
children |
comparison
equal
deleted
inserted
replaced
1:740c06c4ed3b | 2:8843bcb38558 |
---|---|
1 <tool id="uniq_and_count" name="count redundant" version="1.0"> | 1 <tool id="uniq_and_count" name="count redundant" version="1.1"> |
2 <description>Count redundant lines in file.</description> | 2 <description>Count redundant lines in file.</description> |
3 <stdio> | 3 <stdio> |
4 <exit_code range="1:" /> | 4 <exit_code range="1:" /> |
5 </stdio> | 5 </stdio> |
6 <command detect_errors="exit_code"><![CDATA[ | 6 <command detect_errors="exit_code"><![CDATA[ |
7 uniq -c '${input}' > '${output}' | 7 uniq -c '${input}' > '${output}' |
8 ]]> | 8 ]]> |
9 </command> | 9 </command> |
10 <inputs> | 10 <inputs> |
11 <param type="data" name="input" format="tab" label="Select your tab file :" /> | 11 <param type="data" name="input" format="tabular" label="Select your tab file :" /> |
12 </inputs> | 12 </inputs> |
13 <outputs> | 13 <outputs> |
14 <data name="output" format="tab" /> | 14 <data name="output" format="tabular" /> |
15 </outputs> | 15 </outputs> |
16 <help> | 16 <help> |
17 Insert you tab delimited file to count redundant lines. | 17 Insert you tab delimited file to count redundant lines. |
18 </help> | 18 </help> |
19 </tool> | 19 </tool> |