view remove_tail.xml @ 3:6979701451c3 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a6a6774ae353f915a5ca34af8f281edd91e5c665
author iuc
date Fri, 04 Oct 2024 08:57:10 +0000
parents c713b677ff44
children
line wrap: on
line source

<tool id="bctools_remove_tail" name="Remove 3'-end nts" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
    <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>