annotate galaxy-conf/ZScore.xml @ 16:35031c567ece draft

Add sam_fa_indices.loc.sample to enable DNAProperty and FindNMer tools that require samtools indices to be installed.
author timpalpant
date Sat, 09 Jun 2012 16:06:25 -0400
parents 3e477c7e0e73
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
3e477c7e0e73 Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents: 13
diff changeset
1 <tool id="WigZScore" name="Z-Score" version="1.2.0">
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
2 <description>a (Big)Wig file</description>
15
3e477c7e0e73 Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents: 13
diff changeset
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.ZScore -i $input $chr -o $output</command>
4
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" />
15
3e477c7e0e73 Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents: 13
diff changeset
6 <param name="chr" type="boolean" checked="false" truevalue="-c" falsevalue="" label="Z-score chromosomes individually" />
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
7 </inputs>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
8 <outputs>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
9 <data format="wig" name="output" metadata_source="input" />
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
10 </outputs>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
11 <tests>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
12 <test>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
13 <param name="input" value="wigmath1.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
14 <output name="output" file="zscorer1.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
15 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
16 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
17 <param name="input" value="wigmath2.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
18 <output name="output" file="zscorer2.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
19 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
20 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
21 <param name="input" value="wigmath3.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
22 <output name="output" file="zscorer3.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
23 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
24 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
25 <param name="input" value="wigmath1.bw"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
26 <output name="output" file="zscorer4.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
27 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
28 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
29 <param name="input" value="wigmath2.bw"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
30 <output name="output" file="zscorer5.wig"/>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
31 </test>
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
32 <test>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
33 <param name="input" value="wigmath3.bw"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
34 <output name="output" file="zscorer6.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
35 </test>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
36 </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
37
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
38 <help>
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
39
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
40 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
41
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
42 .. 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
43
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
44 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
45
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
46 .. 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
47
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
48 **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
49
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 9
diff changeset
50 </help>
4
4b32ed5d4a1b Uploaded
timpalpant
parents:
diff changeset
51 </tool>