view galaxy-conf/MovingAverageSmooth.xml @ 25:b43c420a6135 draft default tip

Incorporate fix: https://github.com/timpalpant/java-genomics-toolkit/commit/9a6c61b7c6b8d85a1cd3f595eed657a537b85dc9
author timpalpant
date Sat, 09 Feb 2019 14:02:24 -0500
parents 9d56b5b85740
children
line wrap: on
line source

<tool id="WigMovingAverage" name="Moving average smooth" version="1.1.0">
  <description>a (Big)Wig file</description>
  <command interpreter="bash">galaxyToolRunner.sh wigmath.MovingAverageSmooth -i $input -w $W -o $output</command>
  <inputs>
      <param name="input" type="data" format="bigwig,wig" label="Smooth the data in" />
      <param name="W" type="integer" value="20" optional="true" label="Width of the moving average in base pairs" />
  </inputs>
  <outputs>
      <data format="wig" name="output" metadata_source="input" />
  </outputs>
  <tests>
    <!--<test>
	    <param name="input" value="test.wig"/>
	    <param name="dbkey" value="sacCer2"/>
	    <param name="S" value="20"/>
	    <param name="W" value="3"/>
	    <output name="output" file="smoother.output1"/>
	  </test>
	  <test>
	    <param name="input" value="test.bw"/>
	    <param name="dbkey" value="sacCer2"/>
	    <param name="S" value="20"/>
	    <param name="W" value="3"/>
	    <output name="output" file="smoother.output1"/>
	  </test>
	  <test>
	    <param name="input" value="test.wig"/>
	    <param name="dbkey" value="sacCer2"/>
	    <param name="S" value="10"/>
	    <param name="W" value="2"/>
	    <output name="output" file="smoother.output2"/>
	  </test>
	  <test>
	    <param name="input" value="test.bw"/>
	    <param name="dbkey" value="sacCer2"/>
	    <param name="S" value="10"/>
	    <param name="W" value="2"/>
	    <output name="output" file="smoother.output2"/>
	  </test>
	  <test>
	    <param name="input" value="test.wig"/>
	    <param name="dbkey" value="sacCer2"/>
	    <param name="S" value="50"/>
	    <param name="W" value="1"/>
	    <output name="output" file="smoother.output3"/>
	  </test>
	  <test>
	    <param name="input" value="test.bw"/>
	    <param name="dbkey" value="sacCer2"/>
	    <param name="S" value="5"/>
	    <param name="W" value="1"/>
	    <output name="output" file="smoother.output3"/>
	  </test>-->
  </tests>
  
<help>
  
This tool smooths genomic data with a mean_ filter of the specified width.

.. _mean: http://en.wikipedia.org/wiki/Moving_average

.. class:: warningmark

Note that for the moving average to be perfectly symmetric, the window should be an odd number of base pairs.

.. class:: infomark

**TIP:** If your dataset does not appear in the pulldown menu, it means that it is not in Wig or BigWig format. Use "edit attributes" to set the correct format if it was not detected correctly.
  
</help>
</tool>