view bed12ToBed6.xml @ 39:3e38c9b3214f draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1e25e8d0bd1ebeb2b94c4bbdff222e56defc1fc2"
author iuc
date Wed, 01 Sep 2021 11:04:15 +0000
parents dde39ba9c031
children 7ab85ac5f64b
line wrap: on
line source

<tool id="bedtools_bed12tobed6" name="bedtools BED12 to BED6" version="@TOOL_VERSION@" profile="@PROFILE@">
    <description>converter</description>
    <expand macro="bio_tools" />
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <expand macro="stdio" />
    <command><![CDATA[
bed12ToBed6
-i '$input'
> '$output'
    ]]></command>
    <inputs>
        <param name="input" argument="-i" type="data" format="bed" label="Convert the following BED12 file to BED6"/>
    </inputs>
    <outputs>
        <data name="output" format="bed" metadata_source="input" label="${input.name} (as BED6)"/>
    </outputs>
    <tests>
        <test>
            <param name="input" value="bed12.bed" ftype="bed" />
            <output name="output" file="bed12ToBed6_result1.bed" ftype="bed" />
        </test>
    </tests>
    <help><![CDATA[
**What it does**

bed12ToBed6 is a convenience tool that converts BED features in BED12 (a.k.a. “blocked” BED features such as genes) to discrete BED6 features. For example, in the case of a gene with six exons, bed12ToBed6 would create six separate BED6 features (i.e., one for each exon).

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