comparison galaxy-conf/IntervalAverager.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="IntervalAverager" name="Average intervals" version="2.1.0">
2 <description>that have been aligned</description>
3 <command interpreter="sh">
4 galaxyToolRunner.sh visualization.IntervalAverager -l $loci -o $output $file1
5 #for $input in $inputs
6 ${input.file}
7 #end for
8 </command>
9 <inputs>
10 <param name="file1" label="Sequencing data" type="data" format="bigwig,wig" />
11 <repeat name="inputs" title="Additional sequencing data">
12 <param name="file" type="data" format="bigwig,wig" />
13 </repeat>
14 <param format="bed" name="loci" type="data" label="List of intervals (with alignment points)" />
15 </inputs>
16 <outputs>
17 <data format="tabular" name="output" />
18 </outputs>
19
20 <help>
21
22 This tool calculates the average signal for a set of aligned intervals. Intervals are lined up on their alignment point (column 5 in the Bed file), flipped if on the - strand, and averaged. The output is equivalent to aligning the data in a matrix and then taking the columnwise average of the matrix.
23
24 Intervals with alignment points must be provided in the following extended Bed format ::
25
26 chr low high id alignment strand
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 -----
33
34 **Syntax**
35
36 - **Sequencing data** is the genomic data used to create the average
37 - **List of intervals** is a list of intervals in Bed format with alignment points
38
39 </help>
40 </tool>