annotate SMART/galaxy/changeGffFeatures.xml @ 15:440ceca58672

Uploaded
author m-zytnicki
date Mon, 22 Apr 2013 11:08:07 -0400
parents 769e306b7933
children 94ab73e8a190
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
769e306b7933 Change the repository level.
yufei-luo
parents:
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>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
3 <command interpreter="bash">
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
4 ../Java/Python/changeGffFeatures.sh $inputFile $inputFeature $outputFeature >$outputFile
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
5 </command>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
6 <inputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
7 <param name="inputFile" type="data" label="Input File" format="gff"/>
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
8 <param name="inputFeature" type="text" value="exon" label="The feature you want to change"/>
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
9 <param name="outputFeature" type="text" value="exon" label="The new feature"/>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
10 </inputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
11
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
12 <outputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
13 <data name="outputFile" format="gff" label="[changeGffFeatures] Output File"/>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
14 </outputs>
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
16 <help>
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
17 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
18 </help>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
19 </tool>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
20