annotate SMART/galaxy/getWigDistance.xml @ 38:2c0c0a89fad7

Uploaded
author m-zytnicki
date Thu, 02 May 2013 09:56:47 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
1 <tool id="getWigDistance" name="get WIG distance">
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
2 <description>Compute the average data around some genomic coordinates using WIG files (thus covering a large proportion of the genome).</description>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
3 <requirements>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
4 <requirement type="set_environment">PYTHONPATH</requirement>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
5 </requirements>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
6 <command interpreter="python">
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
7 ../Java/Python/getWigDistance.py -i $inputGff3File -f gff3 -w $inputWigFile -a 0.0 -d $distance $strand -o $outputFile
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
8 </command>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
9
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
10 <inputs>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
11 <param name="inputGff3File" type="data" label="Input Gff3 File" format="gff3"/>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
12 <param name="inputWigFile" type="data" label="Input Wig File" format="wig"/>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
13 <param name="distance" type="integer" value="1000" label="Distance around positions."/>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
14 <param name="strand" type="boolean" truevalue="-s" falsevalue="" checked="false" label="Consider both strands separately."/>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
15 </inputs>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
16
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
17 <outputs>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
18 <data name="outputFile" format="png" label="[get WIG distance] PNG output file"/>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
19 </outputs>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
20
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
21 <help>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
22 Plots the average data contained in a set of WIG files (please consult http://genome.ucsc.edu/goldenPath/help/wiggle.html to know more about this format) around the first nucleotides of a annotation file.
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
23
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
24 The tool needs an transcript list, some WIG files, and a distance. For each transcript, it collects all the values around its first nucleotide, the radius being given by the distance. Then, it computes the average value for each position. A point (*x*, *y*) means that the average value in the WIG file for a nucleotide distant by *x* nucleotides from the first nucleotide of an input transcript is *y*.
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
25
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
26 You can possibly use a log scale for the *y*-axis.
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
27 </help>
2c0c0a89fad7 Uploaded
m-zytnicki
parents:
diff changeset
28 </tool>