view overlapBed.xml @ 44:589e7e57fd6d draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 03a91f6c42c75dc36d09505c2e6a2236178e4695
author iuc
date Mon, 20 Feb 2023 21:49:48 +0000
parents 7ab85ac5f64b
children
line wrap: on
line source

<tool id="bedtools_overlapbed" name="bedtools OverlapBed" version="@TOOL_VERSION@" profile="@PROFILE@">
    <description>computes the amount of overlap from two intervals</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="bio_tools" />
    <expand macro="requirements" />
    <expand macro="stdio" />
    <command><![CDATA[
bedtools overlap
-i '$input'
-cols $cols
> '$output'
    ]]></command>
    <inputs>
        <param name="input" argument="-i" type="data" format="@STD_BEDTOOLS_INPUTS@" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/>
        <param name="cols" type="data_column" data_ref="input" multiple="true"
            label="Specify the columns for the starts and ends of the features for which you’d like to compute the overlap/distance"
            help="The columns must be listed in the following order: start1,end1,start2,end2" />
    </inputs>
    <outputs>
        <data name="output" format_source="input" metadata_source="input" label="Overlap of ${input.name}"/>
    </outputs>
    <tests>
        <test>
            <param name="input" value="windowBed_result1.bed" ftype="bed" />
            <param name="cols" value="2,3,5,6" />
            <output name="output" file="overlapBed_result1.bed" ftype="bed" />
        </test>
    </tests>
    <help><![CDATA[
**What it does**

overlap computes the amount of overlap (in the case of positive values) or distance (in the case of negative values) between feature coordinates occurring on the same input line and reports the result at the end of the same line. In this way, it is a useful method for computing custom overlap scores from the output of other BEDTools.

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