comparison galaxy-conf/IntervalAverager.xml @ 12:81d5b81fb3c2 draft

Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
author timpalpant
date Wed, 25 Apr 2012 16:53:48 -0400
parents 4b32ed5d4a1b
children eb53be9a09f4
comparison
equal deleted inserted replaced
11:b1952a90d4bf 12:81d5b81fb3c2
1 <tool id="IntervalAverager" name="Average intervals" version="1.0.0"> 1 <tool id="IntervalAverager" name="Average intervals" version="1.0.0">
2 <description>that have been aligned</description> 2 <description>that have been aligned</description>
3 <command interpreter="sh"> 3 <command interpreter="sh">galaxyToolRunner.sh visualization.IntervalAverager -i $input -l $loci -o $output</command>
4 galaxyToolRunner.sh visualization.IntervalAverager -i $input -l $loci -o $output
5 </command>
6 <inputs> 4 <inputs>
7 <param format="wig,bigwig" name="input" type="data" label="Sequencing data" /> 5 <param format="wig,bigwig" name="input" type="data" label="Sequencing data" />
8 <param format="bed" name="loci" type="data" label="List of intervals (with alignment points)" /> 6 <param format="bed" name="loci" type="data" label="List of intervals (with alignment points)" />
9 </inputs> 7 </inputs>
10 <outputs> 8 <outputs>
11 <data format="tabular" name="output" /> 9 <data format="tabular" name="output" />
12 </outputs> 10 </outputs>
13 11
14 <help> 12 <help>
13
14 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.
15
16 Intervals with alignment points must be provided in the following extended Bed format ::
17
18 chr low high id alignment strand
19
20 .. class:: infomark
21
22 **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.
23
24 -----
25
26 **Syntax**
27
28 - **Sequencing data** is the genomic data used to create the average
29 - **List of intervals** is a list of intervals in Bed format with alignment points
30
15 </help> 31 </help>
16 </tool> 32 </tool>