view remove_tail.xml @ 2:3c581a2b19f3 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 758b42538f722759e7b5414f64c9a7973cc221b4"
author iuc
date Wed, 25 Dec 2019 11:40:32 -0500
parents c713b677ff44
children
line wrap: on
line source

<tool id="bctools_remove_tail" name="Remove 3'-end nts" version="@VERSION@">
    <description>from FASTQ</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <command detect_errors="exit_code"><![CDATA[
        remove_tail.py
        '$reads_fastq'
        '$length'
        > '$default'
    ]]></command>
    <inputs>
        <param name="reads_fastq" type="data" format="fastq" label="FASTQ file"/>
        <param name="length" type="integer" value="0" label="Remove this many nucleotides"/>
    </inputs>
    <outputs>
        <data name="default" format="fastq"/>
    </outputs>
    <tests>
        <test>
            <param name="reads_fastq" value="readswithtail.fastq"/>
            <param name="length" value="7"/>
            <output name="default" file="readswithtailremoved.fastq"/>
        </test>
    </tests>
    <help><![CDATA[

bctools - Remove 3'-end nts from FASTQ
======================================

Remove a certain number of nucleotides from the 3'-tails of sequences in FASTQ format.

    ]]></help>
    <expand macro="citations"/>
</tool>