Mercurial > repos > timpalpant > java_genomics_toolkit
annotate galaxy-conf/Divide.xml @ 18:b2a69d34385a draft
Performance improvements to Wig file checksumming. Bug fix in Autocorrelation tool.
author | timpalpant |
---|---|
date | Fri, 15 Jun 2012 15:07:33 -0400 |
parents | 3e477c7e0e73 |
children |
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:
12
diff
changeset
|
1 <tool id="WigDivide" name="Divide" version="1.1.0"> |
4 | 2 <description>two (Big)Wig files</description> |
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.Divide -n $dividend -d $divisor -o $output</command> | |
4 <inputs> | |
5 <param format="bigwig,wig" name="dividend" type="data" label="File 1 (dividend)" /> | |
6 <param format="bigwig,wig" name="divisor" type="data" label="File 2 (divisor)" /> | |
7 </inputs> | |
8 <outputs> | |
9 <data format="wig" name="output" metadata_source="dividend" /> | |
10 </outputs> | |
11 <tests> | |
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:
12
diff
changeset
|
12 <test> |
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:
12
diff
changeset
|
13 <param name="dividend" value="wigmath1.wig"/> |
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:
12
diff
changeset
|
14 <param name="divisor" value="wigmath2.wig"/> |
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:
12
diff
changeset
|
15 <output name="output" file="divide1.wig"/> |
4 | 16 </test> |
17 <test> | |
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:
12
diff
changeset
|
18 <param name="dividend" value="wigmath1.wig"/> |
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:
12
diff
changeset
|
19 <param name="divisor" value="wigmath3.bw"/> |
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:
12
diff
changeset
|
20 <output name="output" file="divide2.wig"/> |
4 | 21 </test> |
22 <test> | |
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:
12
diff
changeset
|
23 <param name="dividend" value="wigmath3.bw"/> |
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:
12
diff
changeset
|
24 <param name="divisor" value="wigmath2.bw"/> |
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:
12
diff
changeset
|
25 <output name="output" file="divide3.wig"/> |
4 | 26 </test> |
27 </tests> | |
28 | |
29 <help> | |
12
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
30 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
31 .. class:: infomark |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
32 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
33 **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:
11
diff
changeset
|
34 |
4 | 35 </help> |
36 </tool> |