comparison galaxy-conf/MovingAverageSmooth.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="WigMovingAverage" name="Moving average smooth" version="1.1.0">
2 <description>a (Big)Wig file</description>
3 <command interpreter="sh">galaxyToolRunner.sh wigmath.MovingAverageSmooth -i $input -w $W -o $output</command>
4 <inputs>
5 <param name="input" type="data" format="bigwig,wig" label="Smooth the data in" />
6 <param name="W" type="integer" value="20" optional="true" label="Width of the moving average in base pairs" />
7 </inputs>
8 <outputs>
9 <data format="wig" name="output" metadata_source="input" />
10 </outputs>
11 <tests>
12 <!--<test>
13 <param name="input" value="test.wig"/>
14 <param name="dbkey" value="sacCer2"/>
15 <param name="S" value="20"/>
16 <param name="W" value="3"/>
17 <output name="output" file="smoother.output1"/>
18 </test>
19 <test>
20 <param name="input" value="test.bw"/>
21 <param name="dbkey" value="sacCer2"/>
22 <param name="S" value="20"/>
23 <param name="W" value="3"/>
24 <output name="output" file="smoother.output1"/>
25 </test>
26 <test>
27 <param name="input" value="test.wig"/>
28 <param name="dbkey" value="sacCer2"/>
29 <param name="S" value="10"/>
30 <param name="W" value="2"/>
31 <output name="output" file="smoother.output2"/>
32 </test>
33 <test>
34 <param name="input" value="test.bw"/>
35 <param name="dbkey" value="sacCer2"/>
36 <param name="S" value="10"/>
37 <param name="W" value="2"/>
38 <output name="output" file="smoother.output2"/>
39 </test>
40 <test>
41 <param name="input" value="test.wig"/>
42 <param name="dbkey" value="sacCer2"/>
43 <param name="S" value="50"/>
44 <param name="W" value="1"/>
45 <output name="output" file="smoother.output3"/>
46 </test>
47 <test>
48 <param name="input" value="test.bw"/>
49 <param name="dbkey" value="sacCer2"/>
50 <param name="S" value="5"/>
51 <param name="W" value="1"/>
52 <output name="output" file="smoother.output3"/>
53 </test>-->
54 </tests>
55
56 <help>
57
58 This tool smooths genomic data with a mean_ filter of the specified width.
59
60 .. _mean: http://en.wikipedia.org/wiki/Moving_average
61
62 .. class:: warningmark
63
64 Note that for the moving average to be perfectly symmetric, the window should be an odd number of base pairs.
65
66 .. class:: infomark
67
68 **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.
69
70 </help>
71 </tool>