Mercurial > repos > timpalpant > java_genomics_toolkit
annotate galaxy-conf/Scale.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 | 4b32ed5d4a1b |
children | 3e477c7e0e73 |
rev | line source |
---|---|
4 | 1 <tool id="WigScale" name="Scale" version="1.0.0"> |
2 <description>a (Big)Wig file</description> | |
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.Scale -i $input -m $M -o $output</command> | |
4 <inputs> | |
5 <param format="bigwig,wig" name="input" type="data" label="Scale the data in" /> | |
6 <param name="M" type="float" value="0" label="Multiply by (leave 0 to scale by 1/mean)" /> | |
7 </inputs> | |
8 <outputs> | |
9 <data format="wig" name="output" metadata_source="input" /> | |
10 </outputs> | |
11 <tests> | |
12 <!--<test> | |
13 <param name="input" value="wigmath.input1"/> | |
14 <param name="T" value="0"/> | |
15 <param name="dbkey" value="sacCer2"/> | |
16 <output name="output" file="percenter.output1"/> | |
17 </test> | |
18 <test> | |
19 <param name="input" value="wigmath.input1.bw"/> | |
20 <param name="T" value="0"/> | |
21 <param name="dbkey" value="sacCer2"/> | |
22 <output name="output" file="percenter.output1"/> | |
23 </test> | |
24 <test> | |
25 <param name="input" value="wigmath.input2"/> | |
26 <param name="T" value="2"/> | |
27 <param name="dbkey" value="sacCer2"/> | |
28 <output name="output" file="percenter.output2"/> | |
29 </test> | |
30 <test> | |
31 <param name="input" value="wigmath.input2.bw"/> | |
32 <param name="T" value="2"/> | |
33 <param name="dbkey" value="sacCer2"/> | |
34 <output name="output" file="percenter.output2"/> | |
35 </test> | |
36 <test> | |
37 <param name="input" value="wigmath.input3"/> | |
38 <param name="T" value="1000000"/> | |
39 <param name="dbkey" value="sacCer2"/> | |
40 <output name="output" file="percenter.output3"/> | |
41 </test> | |
42 <test> | |
43 <param name="input" value="wigmath.input3.bw"/> | |
44 <param name="T" value="1000000"/> | |
45 <param name="dbkey" value="sacCer2"/> | |
46 <output name="output" file="percenter.output3"/> | |
47 </test>--> | |
48 </tests> | |
49 | |
50 <help> | |
12
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
4
diff
changeset
|
51 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
4
diff
changeset
|
52 This tool will multiply all values in a Wig file by a scalar. For example, this can be used to normalize to read depth by multiplying by 1/(# reads). By default, the tool will scale to 1/(mean value), which is equivalent to dividing by coverage and multiplying by the size of the genome. The resulting output file should have mean 1. |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
4
diff
changeset
|
53 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
4
diff
changeset
|
54 .. class:: infomark |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
4
diff
changeset
|
55 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
4
diff
changeset
|
56 **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:
4
diff
changeset
|
57 |
4 | 58 </help> |
59 </tool> |