annotate SMART/galaxy/changeGffFeatures.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="changeGffFeatures" name="change GFF features">
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
2 <description>Change a feature in a GFF file (the feature is the 3rd column).</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="bash">
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
7 ../Java/Python/changeGffFeatures.sh $inputFile $inputFeature $outputFeature >$outputFile
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
8 </command>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
9 <inputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
10 <param name="inputFile" type="data" label="Input File" format="gff"/>
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
11 <param name="inputFeature" type="text" value="exon" label="The feature you want to change"/>
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
12 <param name="outputFeature" type="text" value="exon" label="The new feature"/>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
13 </inputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
14
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
15 <outputs>
18
94ab73e8a190 Uploaded
m-zytnicki
parents: 15
diff changeset
16 <data name="outputFile" format="gff" label="[change GFF features] Output File"/>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
17 </outputs>
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
18
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
19 <help>
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
20 This script changes the third column of a GFF3 file (please refer to http://www.sequenceontology.org/gff3.shtml to know more about this format).
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
21 </help>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
22 </tool>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
23