view complementBed.xml @ 27:a33db97b220c draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1ec398a9421f016b852fe59d46961c12321ee5c8
author iuc
date Tue, 15 May 2018 14:52:10 -0400
parents 95a3b2c25bd1
children 4f7a5ccd2ae9
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_FILE@
        > "$output"
]]>
    </command>
    <inputs>
        <param format="@STD_BEDTOOLS_INPUTS@" name="input" type="data" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/>
        <expand macro="input_conditional_genome_file" />
    </inputs>
    <outputs>
        <data format_source="input" name="output" metadata_source="input" label="Complement of ${input.name}"/>
    </outputs>
    <tests>
        <test>
            <param name="input" value="a.bed" ftype="bed" />
            <param name="genome_file_opts_selector" value="hist" />
            <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 @STD_BEDTOOLS_INPUT_LABEL@ file.

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

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