diff galaxy-conf/Downsample.xml @ 12:81d5b81fb3c2 draft

Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
author timpalpant
date Wed, 25 Apr 2012 16:53:48 -0400
parents
children eb53be9a09f4
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/galaxy-conf/Downsample.xml	Wed Apr 25 16:53:48 2012 -0400
@@ -0,0 +1,28 @@
+<tool id="WigDownsample" name="Downsample" version="1.0.0">
+  <description>a (Big)Wig file</description>
+  <command interpreter="sh">galaxyToolRunner.sh wigmath.Downsample -i $input -m $metric -w $window -o $output</command>
+  <inputs>
+      <param format="bigwig,wig" name="input" type="data" label="Original data" />
+      <param name="window" type="integer" value="100" label="Window size (bp)" />
+      <param name="metric" type="select" label="Downsampling method">
+      	<option value="mean">Mean</option>
+      	<option value="min">Min</option>
+      	<option value="max">Max</option>
+      </param>
+  </inputs>
+  <outputs>
+      <data format="wig" name="output" metadata_source="input" />
+  </outputs>
+  
+  <help>
+
+.. 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.
+
+-----
+
+This tool can be used to reduce the resolution and file size of Wig files for easier upload to UCSC. Data is downsampled in non-overlapping moving windows starting from the beginning of each chromosome. Each window can be downsampled as the arithmetic mean, minimum, or maximum value of the original data.
+
+  </help>
+</tool>