annotate SMART/galaxy/getWigData.xml @ 18:94ab73e8a190

Uploaded
author m-zytnicki
date Mon, 29 Apr 2013 03:20:15 -0400
parents 440ceca58672
children 0ab839023fe4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18
94ab73e8a190 Uploaded
m-zytnicki
parents: 15
diff changeset
1 <tool id="getWigData" name="get WIG data">
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
2 <description>Compute the average data for some genomic coordinates using WIG files</description>
18
94ab73e8a190 Uploaded
m-zytnicki
parents: 15
diff changeset
3 <requirements>
94ab73e8a190 Uploaded
m-zytnicki
parents: 15
diff changeset
4 <requirement type="set_environment">PYTHONPATH</requirement>
94ab73e8a190 Uploaded
m-zytnicki
parents: 15
diff changeset
5 </requirements>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
6 <command interpreter="python">
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
7 ../Java/Python/getWigData.py -i $inputGff3File -f gff3 -w $inputWigFile -t $tagName -$strand -o $outputFile
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
8 </command>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
9
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
10 <inputs>
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
11 <param name="inputGff3File" type="data" label="Input Gff3 File" format="gff3"/>
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
12 <param name="inputWigFile" type="data" label="Input Wig File" format="wig"/>
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
13 <param name="tagName" type="text" value="None" label="tag option" help="choose a tag name to write the wig information to output file."/>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
14 <param name="strand" type="boolean" truevalue="-s" falsevalue="" checked="false" label="consider both strands separately."/>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
15 </inputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
16
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
17 <outputs>
18
94ab73e8a190 Uploaded
m-zytnicki
parents: 15
diff changeset
18 <data format="gff3" name="outputFile" label="[get WIG data] output file"/>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
19 </outputs>
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
20
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
21 <help>
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
22 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.
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
23
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
24 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.
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
25
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
26 You can then plot your data using *plotTranscriptList.py*.
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
27 </help>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
28 </tool>