view complementBed.xml @ 12:7b3aaff0d78c draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit e5664837d1ea4575f87a9e963f5d4e18a82d51d5
author iuc
date Fri, 28 Oct 2016 12:54:40 -0400
parents 607c0576c6ab
children 44867b59dbf2
line wrap: on
line source

<tool id="bedtools_complementbed" name="ComplementBed" version="@WRAPPER_VERSION@.0">
    <description>Extract intervals not represented by an interval file</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <expand macro="stdio" />
    <command>
<![CDATA[
        complementBed
        -i "$input"
        -g "$genome"
        > "$output"
]]>
    </command>
    <inputs>
        <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/>
        <expand macro="genome" />
    </inputs>
    <outputs>
        <data format_source="input" name="output" metadata_source="input" label="Complemen of ${input.name}"/>
    </outputs>
    <tests>
        <test>
            <param name="input" value="a.bed" ftype="bed" />
            <param name="genome" value="mm9_chr1.len" />
            <output name="output" file="complementBed_result1.bed" ftype="bed" />
        </test>
    </tests>
    <help>
<![CDATA[
**What it does**

bedtools complement returns all intervals in a genome that are not covered by at least one interval in the input BED/GFF/VCF file.

.. image:: $PATH_TO_IMAGES/complement-glyph.png

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