|
2
|
1 <tool id="uniq_and_count" name="count redundant" version="1.1">
|
|
0
|
2 <description>Count redundant lines in file.</description>
|
|
|
3 <stdio>
|
|
|
4 <exit_code range="1:" />
|
|
|
5 </stdio>
|
|
1
|
6 <command detect_errors="exit_code"><![CDATA[
|
|
|
7 uniq -c '${input}' > '${output}'
|
|
|
8 ]]>
|
|
0
|
9 </command>
|
|
|
10 <inputs>
|
|
2
|
11 <param type="data" name="input" format="tabular" label="Select your tab file :" />
|
|
0
|
12 </inputs>
|
|
|
13 <outputs>
|
|
2
|
14 <data name="output" format="tabular" />
|
|
0
|
15 </outputs>
|
|
|
16 <help>
|
|
|
17 Insert you tab delimited file to count redundant lines.
|
|
|
18 </help>
|
|
|
19 </tool>
|