Mercurial > repos > timpalpant > java_genomics_toolkit
annotate galaxy-conf/ZScore.xml @ 13:eb53be9a09f4 draft
Uploaded
author | timpalpant |
---|---|
date | Sat, 19 May 2012 10:36:45 -0400 |
parents | 81d5b81fb3c2 |
children | 3e477c7e0e73 |
rev | line source |
---|---|
4 | 1 <tool id="WigZScore" name="Z-Score" version="1.0.0"> |
2 <description>a (Big)Wig file</description> | |
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.ZScore -i $input -o $output</command> | |
4 <inputs> | |
5 <param format="bigwig,wig" name="input" type="data" label="Z-score the data in" /> | |
6 </inputs> | |
7 <outputs> | |
8 <data format="wig" name="output" metadata_source="input" /> | |
9 </outputs> | |
10 <tests> | |
13 | 11 <test> |
12 <param name="input" value="wigmath1.wig"/> | |
13 <output name="output" file="zscorer1.wig"/> | |
4 | 14 </test> |
15 <test> | |
13 | 16 <param name="input" value="wigmath2.wig"/> |
17 <output name="output" file="zscorer2.wig"/> | |
4 | 18 </test> |
19 <test> | |
13 | 20 <param name="input" value="wigmath3.wig"/> |
21 <output name="output" file="zscorer3.wig"/> | |
4 | 22 </test> |
23 <test> | |
13 | 24 <param name="input" value="wigmath1.bw"/> |
25 <output name="output" file="zscorer4.wig"/> | |
4 | 26 </test> |
27 <test> | |
13 | 28 <param name="input" value="wigmath2.bw"/> |
29 <output name="output" file="zscorer5.wig"/> | |
4 | 30 </test> |
31 <test> | |
13 | 32 <param name="input" value="wigmath3.bw"/> |
33 <output name="output" file="zscorer6.wig"/> | |
34 </test> | |
4 | 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 | 50 </tool> |