comparison galaxy-conf/FindAbsoluteMaxima.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="FindWigMaxima" name="Find absolute maxima" version="1.1.0">
2 <description>in intervals</description>
3 <command interpreter="sh">
4 galaxyToolRunner.sh ngs.FindAbsoluteMaxima -l $window -o $output
5 #for $input in $inputs
6 ${input.file}
7 #end for
8 </command>
9 <inputs>
10 <repeat name="inputs" title="(Big)Wig file">
11 <param name="file" type="data" format="bigwig,wig" />
12 </repeat>
13 <param name="window" type="data" format="bed,bedgraph,gff" label="Intervals to find maxima in" />
14 </inputs>
15 <outputs>
16 <data name="output" format="tabular" />
17 </outputs>
18
19 <help>
20
21 This tool can be used to find the location of the maximum value in genomic intervals, such as finding the peak summit inside a set of peak calls.
22
23 .. class:: infomark
24
25 **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. Intervals must be provided in Bed, BedGraph, or GFF format.
26
27 -----
28
29 **Example**
30
31
32 if **Intervals** are genes ::
33
34 chr11 5203271 5204877 NM_000518 0 -
35 chr11 5210634 5212434 NM_000519 0 -
36 chr11 5226077 5227663 NM_000559 0 -
37
38 and **Wig files** are ::
39
40 Data1.wig
41 Data2.wig
42
43 this tool will find the location of the maximum value in each interval for each of the provided Wig/BigWig files, and append them in columns in the order that they were added ::
44
45 chr11 5203271 5204877 NM_000518 0 - 5203374 5204300
46 chr11 5210634 5212434 NM_000519 0 - 5210638 5212450
47 chr11 5226077 5227663 NM_000559 0 - 5226800 5226241
48
49 where column 7 is the location of the maximum value in that interval for Data1.wig, and column 7 is the location of the maximum value in that interval for Data2.wig.
50
51 </help>
52 </tool>