annotate SMART/galaxy/getWigData.xml @ 36:44d5973c188c

Uploaded
author m-zytnicki
date Tue, 30 Apr 2013 15:02:29 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
36
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
1 <tool id="getWigData" name="get wig data">
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
2 <description>Compute the average data for some genomic coordinates using WIG files</description>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
3 <command interpreter="python">
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
4 ../Java/Python/getWigData.py -i $inputGff3File -f gff3 -w $inputWigFile -t $tagName -$strand -o $outputFile
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
5 </command>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
6
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
7 <inputs>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
8 <param name="inputGff3File" type="data" label="Input Gff3 File" format="gff3"/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
9 <param name="inputWigFile" type="data" label="Input Wig File" format="wig"/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
10 <param name="tagName" type="text" value="None" label="tag option" help="choose a tag name to write the wig information to output file."/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
11 <param name="strand" type="boolean" truevalue="-s" falsevalue="" checked="false" label="consider both strands separately."/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
12 </inputs>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
13
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
14 <outputs>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
15 <data format="gff3" name="outputFile" label="[getWigData -> gff3] Output File"/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
16 </outputs>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
17
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
18 <help>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
19 Reads a transcript list, computes the average value of some WIG data (please consult http://genome.ucsc.edu/goldenPath/help/wiggle.html to know more about this format) for each transcript and adds a tag corresponding to this average value to the transcript.
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
20
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
21 The script finds all the data which correspond to the genomic coordinates of a transcript, average these data and store the result into a tag. Then, the transcripts are written in an output file, together with the tag.
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
22
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
23 You can then plot your data using *plotTranscriptList.py*.
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
24 </help>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
25 </tool>