annotate galaxy-conf/Downsample.xml @ 14:f58706d4d421 draft

Uploaded
author timpalpant
date Sat, 19 May 2012 10:40:16 -0400
parents eb53be9a09f4
children 3e477c7e0e73
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
1 <tool id="WigDownsample" name="Downsample" version="1.0.0">
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
2 <description>a (Big)Wig file</description>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.Downsample -i $input -m $metric -w $window -o $output</command>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
4 <inputs>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
5 <param format="bigwig,wig" name="input" type="data" label="Original data" />
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
6 <param name="window" type="integer" value="100" label="Window size (bp)" />
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
7 <param name="metric" type="select" label="Downsampling method">
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
8 <option value="mean">Mean</option>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
9 <option value="min">Minimum</option>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
10 <option value="max">Maximum</option>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
11 <option value="coverage">Coverage</option>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
12 <option value="total">Total</option>
12
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
13 </param>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
14 </inputs>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
15 <outputs>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
16 <data format="wig" name="output" metadata_source="input" />
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
17 </outputs>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
18
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
19 <help>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
20
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
21 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 windows starting from the beginning of each chromosome. Each window can be downsampled as the mean, minimum, maximum, total, or coverage of the original data.
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
22
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
23 -----
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
24
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
25 **Downsampling Methods**
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
26
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
27 - **Mean:** the arithmetic mean of the values in the original data window
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
28 - **Minimum:** the least value in the original data window
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
29 - **Maximum:** the greatest value in the original data window
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
30 - **Coverage:** the fraction of bases with values in the original window
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
31 - **Total:** the sum of all values in the original data window
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
32
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
33 -----
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
34
12
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
35 .. class:: infomark
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
36
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
37 **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.
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
38
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
39 </help>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
diff changeset
40 </tool>