annotate galaxy-conf/ZScore.xml @ 13:eb53be9a09f4 draft

Uploaded
author timpalpant
date Sat, 19 May 2012 10:36:45 -0400
parents 81d5b81fb3c2
children 3e477c7e0e73
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
1 <tool id="WigZScore" name="Z-Score" version="1.0.0">
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
2 <description>a (Big)Wig file</description>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.ZScore -i $input -o $output</command>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
4 <inputs>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
5 <param format="bigwig,wig" name="input" type="data" label="Z-score the data in" />
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
6 </inputs>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
7 <outputs>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
8 <data format="wig" name="output" metadata_source="input" />
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
9 </outputs>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
10 <tests>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
11 <test>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
12 <param name="input" value="wigmath1.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
13 <output name="output" file="zscorer1.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
14 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
15 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
16 <param name="input" value="wigmath2.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
17 <output name="output" file="zscorer2.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
18 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
19 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
20 <param name="input" value="wigmath3.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
21 <output name="output" file="zscorer3.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
22 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
23 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
24 <param name="input" value="wigmath1.bw"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
25 <output name="output" file="zscorer4.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
26 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
27 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
28 <param name="input" value="wigmath2.bw"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
29 <output name="output" file="zscorer5.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
30 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
31 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
32 <param name="input" value="wigmath3.bw"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
33 <output name="output" file="zscorer6.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
34 </test>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
35 </tests>
12
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
36
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
37 <help>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
38
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
39 This tool will compute normal scores (Z-scores) for each of the values in a Wig file. For each base pair, the Z-scored value is equal to the deviance from the mean divided by the standard deviation (i.e. the number of standard deviations a value is away from the mean). The output file should have mean 0 and standard deviation 1.
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
40
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
41 .. class:: infomark
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
42
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
43 This tool is equivalent to using the **Mean Shift** tool to shift a Wig file to mean 0, then using the **Scale** tool to scale by 1/(standard deviation).
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
44
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
45 .. class:: infomark
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
46
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
47 **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: 9
diff changeset
48
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
49 </help>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
50 </tool>