Mercurial > repos > timpalpant > java_genomics_toolkit
comparison galaxy-conf/Divide.xml @ 24:a77e126ae856 draft
Reupload since last upload did not load correctly
author | timpalpant |
---|---|
date | Tue, 19 Jun 2012 22:15:09 -0400 |
parents | 9d56b5b85740 |
children | b43c420a6135 |
comparison
equal
deleted
inserted
replaced
23:01d5d20eaadd | 24:a77e126ae856 |
---|---|
1 <tool id="WigDivide" name="Divide" version="1.1.0"> | |
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> | |
12 <test> | |
13 <param name="dividend" value="wigmath1.wig"/> | |
14 <param name="divisor" value="wigmath2.wig"/> | |
15 <output name="output" file="divide1.wig"/> | |
16 </test> | |
17 <test> | |
18 <param name="dividend" value="wigmath1.wig"/> | |
19 <param name="divisor" value="wigmath3.bw"/> | |
20 <output name="output" file="divide2.wig"/> | |
21 </test> | |
22 <test> | |
23 <param name="dividend" value="wigmath3.bw"/> | |
24 <param name="divisor" value="wigmath2.bw"/> | |
25 <output name="output" file="divide3.wig"/> | |
26 </test> | |
27 </tests> | |
28 | |
29 <help> | |
30 | |
31 .. class:: infomark | |
32 | |
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. | |
34 | |
35 </help> | |
36 </tool> |