view remove_tail.xml @ 1:f7c115a05f50 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1a8f89c930408a481143f7d6493746cd5fa30c3e
author iuc
date Wed, 18 Apr 2018 04:04:58 -0400
parents c713b677ff44
children 6979701451c3
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>