comparison 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
comparison
equal deleted inserted replaced
11:b1952a90d4bf 12:81d5b81fb3c2
1 <tool id="WigDownsample" name="Downsample" version="1.0.0">
2 <description>a (Big)Wig file</description>
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.Downsample -i $input -m $metric -w $window -o $output</command>
4 <inputs>
5 <param format="bigwig,wig" name="input" type="data" label="Original data" />
6 <param name="window" type="integer" value="100" label="Window size (bp)" />
7 <param name="metric" type="select" label="Downsampling method">
8 <option value="mean">Mean</option>
9 <option value="min">Min</option>
10 <option value="max">Max</option>
11 </param>
12 </inputs>
13 <outputs>
14 <data format="wig" name="output" metadata_source="input" />
15 </outputs>
16
17 <help>
18
19 .. class:: infomark
20
21 **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.
22
23 -----
24
25 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.
26
27 </help>
28 </tool>