view allow_dovetailing.xml @ 28:be95c9c82937 draft

planemo upload for repository https://github.com/bardin-lab/readtagger/tree/master/galaxy commit 9b9334bf4c0364e3e06e64a9b3e532d0b10f93ba-dirty
author mvdbeek
date Tue, 09 May 2017 10:38:06 -0400
parents 9f7737be4732
children 2c62ca47c455
line wrap: on
line source

<tool id="allow_dovetailing" name="Allow dovetailing" version="0.3.22">
    <description>modifies proper_pair flag in bam files</description>
    <requirements>
        <requirement type="package" version="0.3.22">readtagger</requirement>
    </requirements>
    <command detect_errors="aggressive"><![CDATA[
        allow_dovetailing -i '$input' -o '$output'
    ]]></command>
    <inputs>
        <param name="input" argument="--input_path" type="data" format="bam"/>
    </inputs>
    <outputs>
        <data name="output" format="bam"/>
    </outputs>
    <tests>
        <test>
            <param name="input" value="not_a_proper_pair.bam" ftype="bam"/>
            <output name="output" file="proper_pair.bam" ftype="bam" lines_diff="4"/>
        </test>
    </tests>
    <help><![CDATA[
.. code-block::

    usage: allow_dovetailing [-h] -i INPUT_PATH -o OUTPUT_PATH

    Allow dovetailing.

    optional arguments:
      -h, --help            show this help message and exit
      -i INPUT_PATH, --input_path INPUT_PATH
                            Input alignment file to manipulate
      -o OUTPUT_PATH, --output_path OUTPUT_PATH
                            Output alignment file
    ]]></help>
</tool>