view Sambamba_markdup.xml @ 0:6c916a5a6afb draft

planemo upload for repository https://github.com/biod/sambamba commit 13ed0b409cf2c5de007e0a6fa93391cbbb21795d
author bgruening
date Wed, 12 Jun 2024 15:01:25 +0000
parents
children a348429b6fec
line wrap: on
line source

<tool id="sambamba_markdup" name="Sambamba markdup" version="@TOOL_VERSION@+galaxy@SUFFIX_VERSION@" profile="23.2" license="MIT">
    <description>Finds and marks duplicate reads in BAM files</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <command detect_errors="exit_code"><![CDATA[
        sambamba markdup 
               $remove_duplicates
            -l $compression_level
               '${input_bam}'
               '${output}'
            --nthreads \${GALAXY_SLOTS:-4}
            --tmpdir '\${TMPDIR:-.}'
    ]]></command>
    <inputs>
        <!-- For deduplication the input bam needs to be coordinate sorted, hence the input file is expected to be coordinate sorted -->
        <param name="input_bam" type="data" format="bam" label="Input BAM file"/>
        <param argument="--compression-level" type="integer" value="5" min="0" max="9" label="Level of compression for merged BAM file, number from 0 to 9"/>
        <param argument="--remove-duplicates" type="boolean" truevalue="-r" falsevalue="" label="Remove duplicates instead of just marking them"/>
    </inputs>
    <outputs>
        <data name="output" format="bam"/>
    </outputs>
    <tests>
        <!-- sambamba markdup without dropped reads -->
        <test expect_num_outputs="1">
            <param name="input_bam" value="2.bam" ftype="bam"/>
            <param name="compression_level" value="5"/>
            <param name="remove_duplicates" value="false"/>
            <output name="output" file="2.markdup.bam" ftype="bam" lines_diff="4"/>
        </test>
        <!-- sambamba markdup with dropped reads -->
        <test expect_num_outputs="1">
            <param name="input_bam" value="2.bam" ftype="bam"/>
            <param name="compression_level" value="5"/>
            <param name="remove_duplicates" value="true"/>
            <output name="output" file="2.markdup_removed.bam" ftype="bam" lines_diff="4"/>
        </test>
    </tests>
    <help>
<![CDATA[

Sambamba_markdup marks (by default) or removes duplicate reads. To determine whether a read is a duplicate or not, the same criteria as in Picard are used.

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