view galaxy-conf/FindOutlierRegions.xml @ 25:b43c420a6135 draft default tip

Incorporate fix: https://github.com/timpalpant/java-genomics-toolkit/commit/9a6c61b7c6b8d85a1cd3f595eed657a537b85dc9
author timpalpant
date Sat, 09 Feb 2019 14:02:24 -0500
parents 9d56b5b85740
children
line wrap: on
line source

<tool id="WigFindOutliers" name="Find outlier regions" version="1.1.0">
  <description>such as CNVs</description>
  <command interpreter="bash">galaxyToolRunner.sh ngs.FindOutlierRegions -i $input -w $window -t $threshold $below -o $output</command>
  <inputs>
      <param format="bigwig,wig" name="input" type="data" label="Input data" />
      <param name="window" type="integer" value="150" label="Window size" />
      <param name="threshold" type="float" value="3" label="Threshold (fold times the mean)" />
      <param name="below" type="boolean" checked="false" truevalue="-b" falsevalue="" label="Search for outliers below the threshold" />
  </inputs>
  <outputs>
      <data format="bed" name="output" metadata_source="input" />
  </outputs>
  
  <help>
    
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.

-----

.. class:: infomark

**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.

-----

**Syntax**

- **Input data** is Wig or BigWig formatted data from a high-throughput sequencing experiment.
- **Window size** is the size of the moving average to use.
- **Threshold** is the fold times the genome-wide mean that a window's mean must be in order to be considered an outlier region.

  </help>
</tool>