view bam2msa.xml @ 5:405ed9ad53ab draft

"planemo upload for repository https://github.com/davebx/bioext-gx/ commit c9002fa57e4d800f2c1c8d1dafbceb7681b0fcc2"
author iuc
date Tue, 05 Oct 2021 09:53:20 +0000
parents a68cb16fa1a0
children 27673f5b5343
line wrap: on
line source

<?xml version="1.0"?>
<tool id="bioext_bam2msa" name="Convert BAM" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
    <description>to FASTA multiple sequence alignment</description>
    <macros>
        <import>macros.xml</import>
        <token name="@VERSION_SUFFIX@">0</token>
    </macros>
    <expand macro="requirements"/>
    <command detect_errors="exit_code"><![CDATA[
        ## avoid bam2msa to create .bai in inputdir
        ln -s '$input' input_bam &&
        ln -s '$input.metadata.bam_index' input_bam.bai &&
        bam2msa
            #if $region_start and $region_end:
                -r $region_start:$region_end
            #end if
            'input_bam' '$output'
        ]]></command>
    <inputs>
        <param name="input" type="data" format="bam,sam" label="Input BAM file"/>
        <param name="region_start" type="integer" value="0" optional="True" label="Starting coordinate" help="Leave blank to extract all sequences"/>
        <param name="region_end" type="integer" value="0" optional="True" label="End coordinate"/>
    </inputs>
    <outputs>
        <data name="output" format="fasta"/>
    </outputs>
    <tests>
        <test>
            <param name="input" ftype="bam" value="bam2msa-in1.bam"/>
            <output name="output" file="bam2msa-out1.fa"/>
        </test>
        <test>
            <param name="input" ftype="bam" value="bam2msa-in2.bam"/>
            <output name="output" file="bam2msa-out2.fa"/>
        </test>
    </tests>
    <help>Extract MSA from a BAM file</help>
    <expand macro="citations"/>
</tool>