comparison galaxy-conf/FindOutlierRegions.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="WigFindOutliers" name="Find outlier regions" version="1.1.0">
2 <description>such as CNVs</description>
3 <command interpreter="sh">galaxyToolRunner.sh ngs.FindOutlierRegions -i $input -w $window -t $threshold $below -o $output</command>
4 <inputs>
5 <param format="bigwig,wig" name="input" type="data" label="Input data" />
6 <param name="window" type="integer" value="150" label="Window size" />
7 <param name="threshold" type="float" value="3" label="Threshold (fold times the mean)" />
8 <param name="below" type="boolean" checked="false" truevalue="-b" falsevalue="" label="Search for outliers below the threshold" />
9 </inputs>
10 <outputs>
11 <data format="bed" name="output" metadata_source="input" />
12 </outputs>
13
14 <help>
15
16 This tool identifies regions of the genome that may be repetitive elements or CNVs by scanning for windows that have an exceptionally high mean relative to the genome-wide mean.
17
18 -----
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 - **Input data** is Wig or BigWig formatted data from a high-throughput sequencing experiment.
29 - **Window size** is the size of the moving average to use.
30 - **Threshold** is the fold times the genome-wide mean that a window's mean must be in order to be considered an outlier region.
31
32 </help>
33 </tool>