view biotradis_check_tags.xml @ 7:09c1f97a5bcc draft

"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
author thanhlv
date Fri, 06 Dec 2019 10:11:20 -0500
parents afe9a515d145
children
line wrap: on
line source

<tool id="check_tradis_tags" name="check tradis tags" version="@VERSION@">
    <description>Check for the existence of tradis tags in a bam</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <command detect_errors="exit_code"><![CDATA[
    
    check_tradis_tags -b $input_bam > $output

    ]]></command>
    <inputs>
         <param name="input_bam" type="data" format="bam" label="BAM file" />
     </inputs>

    <outputs>
       <data name="output" format="tabular" label="${tool.name} on ${on_string}" from_work_dir="$output" />
    </outputs>

    <!-- <tests>
    </tests> -->
    <help><![CDATA[
        Adds transposon sequence and quality tags to the read strings and
        outputs a BAM.

        Usage: add_tags -b file.bam [options]

        Options:
        -b  : bam file with tradis tags
        -v  : verbose debugging output
    ]]></help>
    <expand macro="citations" />
</tool>