Mercurial > repos > timpalpant > java_genomics_toolkit
annotate galaxy-conf/LogTransform.xml @ 17:ace7855c1017 draft
Add back tool_data_table_conf.xml.sample since apparently it's still needed.
author | timpalpant |
---|---|
date | Sat, 09 Jun 2012 16:10:42 -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:
13
diff
changeset
|
1 <tool id="WigLogTransform" name="Log transform" version="1.1.0"> |
4 | 2 <description>a (Big)Wig file</description> |
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.LogTransform -i $input -b $base -o $output</command> | |
4 <inputs> | |
5 <param format="bigwig,wig" name="input" type="data" label="(Big)Wig file" /> | |
6 <param name="base" type="integer" value="2" label="Logarithm base" /> | |
7 </inputs> | |
8 <outputs> | |
9 <data format="wig" name="output" metadata_source="input" /> | |
10 </outputs> | |
11 <tests> | |
13 | 12 <test> |
13 <param name="input" value="wigmath1.wig"/> | |
4 | 14 <param name="base" value="2"/> |
13 | 15 <output name="output" file="logger1.wig"/> |
4 | 16 </test> |
17 <test> | |
13 | 18 <param name="input" value="wigmath2.wig"/> |
19 <param name="base" value="3"/> | |
20 <output name="output" file="logger2.wig"/> | |
4 | 21 </test> |
22 <test> | |
13 | 23 <param name="input" value="wigmath3.wig"/> |
24 <param name="base" value="10"/> | |
25 <output name="output" file="logger3.wig"/> | |
4 | 26 </test> |
27 <test> | |
13 | 28 <param name="input" value="wigmath1.bw"/> |
4 | 29 <param name="base" value="2"/> |
13 | 30 <output name="output" file="logger4.wig"/> |
4 | 31 </test> |
32 <test> | |
13 | 33 <param name="input" value="wigmath2.bw"/> |
34 <param name="base" value="3"/> | |
35 <output name="output" file="logger5.wig"/> | |
4 | 36 </test> |
37 <test> | |
13 | 38 <param name="input" value="wigmath3.bw"/> |
4 | 39 <param name="base" value="10"/> |
13 | 40 <output name="output" file="logger6.wig"/> |
41 </test> | |
4 | 42 </tests> |
43 | |
44 <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
|
45 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
4
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:
4
diff
changeset
|
47 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
4
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:
4
diff
changeset
|
49 |
4 | 50 </help> |
51 </tool> |