annotate SMART/galaxy/getWigDistance.xml @ 31:0ab839023fe4

Uploaded
author m-zytnicki
date Tue, 30 Apr 2013 14:33:21 -0400
parents 94ab73e8a190
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31
0ab839023fe4 Uploaded
m-zytnicki
parents: 18
diff changeset
1 <tool id="getWigDistance" name="get wig distance">
6
769e306b7933 Change the repository level.
yufei-luo
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>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
3 <command interpreter="python">
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
4 ../Java/Python/getWigDistance.py -i $inputGff3File -f gff3 -w $inputWigFile -a 0.0 -d $distance $strand -o $outputFile
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
5 </command>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
7 <inputs>
31
0ab839023fe4 Uploaded
m-zytnicki
parents: 18
diff changeset
8 <param name="inputGff3File" type="data" label="Input Gff3 File (compulsory option)" format="gff3"/>
0ab839023fe4 Uploaded
m-zytnicki
parents: 18
diff changeset
9 <param name="inputWigFile" type="data" label="Input Wig File (compulsory option)" format="wig"/>
0ab839023fe4 Uploaded
m-zytnicki
parents: 18
diff changeset
10 <param name="distance" type="integer" value="1000" label="distance option (compulsory option)" help="Distance around position.Be Careful! The value must be upper than 0"/>
0ab839023fe4 Uploaded
m-zytnicki
parents: 18
diff changeset
11 <param name="strand" type="boolean" truevalue="-s" falsevalue="" checked="false" label="consider both strands separately."/>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
12 </inputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
13
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
14 <outputs>
31
0ab839023fe4 Uploaded
m-zytnicki
parents: 18
diff changeset
15 <data name="outputFile" format="png" label="[getWigDistance] PNG output File"/>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
16 </outputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
17 </tool>