Mercurial > repos > iuc > crossmap_bw
view crossmap_bigwig.xml @ 1:3b82b6febfd3 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap commit e365f2835488e73b870c73502c24ff23d28b76a5
author | iuc |
---|---|
date | Fri, 20 Oct 2017 02:50:41 -0400 |
parents | 143ec4d1c8f3 |
children | 566f43df9ef4 |
line wrap: on
line source
<tool id="crossmap_bw" name="CrossMap BigWig" version="@WRAPPER_VERSION@-0"> <description>Convert genome coordinates or annotation files between genome assemblies</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <expand macro="stdio"/> <expand macro="version_command"/> <command><![CDATA[ CrossMap.py bigwig '${chain_source.input_chain}' '${input}' '${output}' && mv '${output}.bw' '${output}' ]]></command> <inputs> <param name="input" type="data" format="bigwig" label="BigWig file"/> <expand macro="chain" /> </inputs> <outputs> <data name="output" format="bigwig" label="${tool.name} on ${on_string}" /> </outputs> <tests> <test> <param name="input" value="test_bigwig_01_input_a.bw" ftype="bigwig"/> <param name="index_source" value="history"/> <param name="input_chain" value="aToB.over.chain" ftype="csv"/> <output name="output" file="test_bigwig_01_output_a.bw"/> </test> <test><!-- cached chain file --> <param name="input" value="test_bigwig_01_input_a.bw" ftype="bigwig"/> <param name="index_source" value="cached"/> <output name="output" file="test_bigwig_01_output_a.bw"/> </test> </tests> <help><![CDATA[ @HELP_GENERAL@ BigWig ------ Input wiggle data can be in variableStep (for data with irregular intervals) or fixedStep (for data with regular intervals). Regardless of the input, the output will always in bedGraph format. bedGraph format is similar to wiggle format and can be converted into BigWig format using UCSC wigToBigWig tool. We export files in bedGraph because it is usually much smaller than file in wiggle format, and more importantly, CrossMap internally transforms wiggle into bedGraph to increase running speed. ]]></help> <citations> <citation type="doi">10.1093/bioinformatics/btt730</citation> </citations> </tool>