view uniq_and_count.xml @ 0:daf911dac808 draft

Uploaded
author p.lucas
date Wed, 14 Apr 2021 12:23:00 +0000
parents
children 740c06c4ed3b
line wrap: on
line source

<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>