view bigwigtobedgraph.xml @ 0:72fc45aeb17c draft

"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/bigwig_to_bedgraph commit 09f44cfa1b2b1404b23aaa00a4b7b7e6e998af63"
author artbio
date Fri, 08 Oct 2021 13:08:20 +0000
parents
children f0249c5ab93c
line wrap: on
line source

<tool id="bigwig_to_bedgraph" name="BigWig to BedGraph" version="377+galaxy0">
    <description>converter</description>
    <requirements>
        <requirement type="package" version="357">ucsc-bigwigtobedgraph</requirement>
    </requirements>
    <stdio>
        <exit_code range="1:" level="fatal" description="Tool exception" />
    </stdio>
    <command detect_errors="exit_code"><![CDATA[
        bigWigToBedGraph $input $output
    ]]></command>
    <inputs>
        <param name="input" format="bigwig" type="data" label="BigWig file to convert" />
    </inputs>
    <outputs>
        <data format="bedgraph" name="output" label="Convert ${on_string} in BedGraph" />
    </outputs>
    <tests>
        <test>
	    <param name="input" value="1.bigwig" />
	    <output name="output" file="1.bedgraph" />	  
        </test>
     </tests>
     <help><![CDATA[

bigWigToBedGraph - Convert from bigWig to bedGraph format.

usage : bigWigToBedGraph in.bigWig out.bedGraph

    ]]></help>
    <citations>
        <citation type="doi">10.1093/bioinformatics/btq351</citation>
    </citations>
</tool>