comparison galaxy-conf/Divide.xml @ 20:9d56b5b85740 draft

Reuploaded to see if tools get loaded correctly this time.
author timpalpant
date Fri, 15 Jun 2012 15:10:26 -0400
parents
children b43c420a6135
comparison
equal deleted inserted replaced
19:8ad390e82b92 20:9d56b5b85740
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>