annotate SMART/galaxy/changeGffFeatures.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="changeGffFeatures" name="change gff Features">
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
2 <description>Change a feature in a GFF file (the feature is the 3rd column).</description>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
3 <command interpreter="bash">
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
4 ../Java/Python/changeGffFeatures.sh $inputFile $inputFeature $outputFeature >$outputFile
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
5 </command>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
6 <inputs>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
7 <param name="inputFile" type="data" label="Input File" format="gff"/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
8 <param name="inputFeature" type="text" value="exon" label="The feature you want to change"/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
9 <param name="outputFeature" type="text" value="exon" label="The new feature"/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
10 </inputs>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
11
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
12 <outputs>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
13 <data name="outputFile" format="gff" label="[changeGffFeatures] Output File"/>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
14 </outputs>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
15
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
16 <help>
44d5973c188c Uploaded
m-zytnicki
parents:
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).
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
18 </help>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
19 </tool>
44d5973c188c Uploaded
m-zytnicki
parents:
diff changeset
20