view samtools_split.xml @ 6:818030fa6bbf draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_split commit 9c5a35ce695c3d134e41d8695487edd5f71ea33c
author iuc
date Sun, 08 Sep 2024 03:26:49 +0000
parents bd850490c7f1
children
line wrap: on
line source

<tool id="samtools_split" name="Samtools split" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
    <description>BAM dataset on readgroups</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <expand macro="stdio"/>
    <expand macro="version_command"/>
    <command><![CDATA[
    @ADDTHREADS@
    samtools split -f 'Read_Group_%!.bam' --output-fmt 'bam'
    #if $header:
        -h $header'
    #end if
    -u '$output'
    -@ \$addthreads
    '$input_bam'
    ]]></command>
    <inputs>
        <param name="input_bam" type="data" format="bam" label="BAM file" />
        <param name="header" type="data" format="bam,sam" optional="True" label="Replace header in output file" />
     </inputs>
    <outputs>
        <data name="output" format="bam" label="${tool.name} on ${on_string}">
            <discover_datasets pattern="Read_Group_(?P&lt;designation&gt;.+)\.bam" ext="bam" visible="true" directory="" assign_primary_output="false"/>
        </data>
    </outputs>
    <tests>
        <test>
            <param name="input_bam" value="phiX.bam" ftype="bam" />
            <output name="output">
                <discovered_dataset designation="Mouse" ftype="bam" file="phiX_Mouse.bam" lines_diff="4" />
                <discovered_dataset designation="Elephant" ftype="bam" file="phiX_Elephant.bam" lines_diff="4" />
                <discovered_dataset designation="Human" ftype="bam" file="phiX_Human.bam" lines_diff="4" />
            </output>
        </test>
    </tests>
    <help><![CDATA[
**What it does**

Splits BAM files on readgroups.

This tool is based on ``samtools split`` command. It will generate multiple output datasets for each readgroup from the input dataset.
    ]]></help>
    <expand macro="citations"/>
</tool>