view dr-disco_fix.xml @ 3:5348cfd3ba5c draft

planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/galaxytools-emc/tree/master/tools/dr-disco commit b6ccc6d8a9a9061207040561b494b7cf2ee3f885
author erasmus-medical-center
date Thu, 10 Aug 2017 05:38:27 -0400
parents 173ca9768e22
children 922b52cf9b35
line wrap: on
line source

<tool id="dr_disco_fix" name="Dr. Disco (fix)" version="@TOOL_VERSION@-g0">
    <description>Fixes chimeric alignments from STAR</description>
    <macros>
        <import>macros.xml</import>
    </macros>

    <expand macro="requirements" />
    <expand macro="version_command" />

    <command detect_errors="exit_code"><![CDATA[
        dr-disco fix
            '${star_discordant_alignment}'
            '${alignment_fixed}'
    ]]></command>

    <inputs>
        <param name="star_discordant_alignment" type="data" format="bam" label="Discordant alignment file of STAR" />
    </inputs>

    <outputs>
        <data name="alignment_fixed" format="bam" label="${tool.name} on ${star_discordant_alignment}" />
    </outputs>

    <tests>
        <test>
            <param name="star_discordant_alignment" value="fix_test-01.bam"/>

            <output name="alignment_fixed" file="fix_test-01.fixed.bam" />
        </test>
    </tests>
    
    <help><![CDATA[

**What it does**

Dr. Disco fix prepares chimeric alignment files produced by STAR for analysis with Dr. Disco (detect) and for visualization in genome browsers.

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