comparison galaxy-conf/Average.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="WigAvg" name="Average" version="1.1.0">
2 <description>multiple (Big)Wig files</description>
3 <command interpreter="sh">
4 galaxyToolRunner.sh wigmath.Average -o $output $file1 $file2
5 #for $input in $inputs
6 ${input.file}
7 #end for
8 </command>
9 <inputs>
10 <param name="file1" label="(Big)Wig file 1" type="data" format="bigwig,wig" />
11 <param name="file2" label="(Big)Wig file 2" type="data" format="bigwig,wig" />
12 <repeat name="inputs" title="Additional (Big)Wig file">
13 <param name="file" type="data" format="bigwig,wig" />
14 </repeat>
15 </inputs>
16 <outputs>
17 <data format="wig" name="output" />
18 </outputs>
19 <tests>
20 <!-- TODO -->
21 </tests>
22
23
24 <help>
25
26 This tool will average the values of the provided Wig files, base pair by base pair.
27
28 .. class:: infomark
29
30 **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.
31
32 </help>
33 </tool>