view seqtk_trimfq.xml @ 4:ecf1c30da3a2 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk commit ad43df79dca3dc7c3511c6eb2ccf8589d2804eb2
author iuc
date Wed, 17 Oct 2018 05:59:21 -0400
parents bc7d99f46a5d
children a09586d5149a
line wrap: on
line source

<?xml version="1.0"?>
<tool id="seqtk_trimfq" name="seqtk_trimfq" version="@WRAPPER_VERSION@.0">
    <description>trim FASTQ using the Phred algorithm</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <expand macro="stdio"/>
    <command><![CDATA[
seqtk trimfq
#if $mode.mode_select == "quality":
    -q $mode.q
    -l $mode.l
#else:
    -b $mode.b
    -e $mode.e
#end if
'$in_file'
@CONDITIONAL_GZIP_OUT@
    ]]></command>
    <inputs>
        <expand macro="in_faq"/>
        <conditional name="mode">
            <param name="mode_select" type="select" label="Mode for trimming FASTQ File">
                <option value="quality">Quality</option>
                <option value="position">Length/Position</option>
            </param>
            <when value="quality">
                <param argument="-q" type="float" value="0.05" label="Error rate threshold" />
                <param argument="-l" type="integer" value="30" label="Maximally trim down to INT bp" />
            </when>
            <when value="position">
                <param argument="-b" type="integer" value="0" label="Trim INT bp from left" />
                <param argument="-e" type="integer" value="0" label="Trim INT bp from right" />
            </when>
        </conditional>
    </inputs>
    <outputs>
        <data name="default" format_source="in_file" label="$in_file.name trimmed"/>
    </outputs>
    <tests>
        <test>
            <param name="in_file" value="seqtk_trimfq.fq" ftype="fastqsanger"/>
            <param name="mode_select" value="quality"/>
            <param name="q" value="0.05"/>
            <param name="l" value="30"/>
            <output name="default" file="seqtk_trimfq_default.fq" ftype="fastqsanger"/>
        </test>
        <test>
            <param name="in_file" value="seqtk_trimfq.fq" ftype="fastqsanger"/>
            <param name="mode_select" value="position"/>
            <param name="b" value="5"/>
            <param name="e" value="5"/>
            <output name="default" file="seqtk_trimfq_be.fq" ftype="fastqsanger"/>
        </test>
        <test>
            <param name="in_file" value="seqtk_trimfq.fq.gz" ftype="fastqsanger.gz"/>
            <param name="mode_select" value="position"/>
            <param name="b" value="5"/>
            <param name="e" value="5"/>
            <output name="default" file="seqtk_trimfq_be.fq.gz" ftype="fastqsanger.gz"/>
        </test>
    </tests>
    <help><![CDATA[
**What it does**

Trim a fastq file based on Phred scores, or by length

@ATTRIBUTION@
    ]]></help>
    <expand macro="citation" />
</tool>