Mercurial > repos > yufei-luo > s_mart
view SMART/galaxy/changeGffFeatures.xml @ 15:440ceca58672
Uploaded
author | m-zytnicki |
---|---|
date | Mon, 22 Apr 2013 11:08:07 -0400 |
parents | 769e306b7933 |
children | 94ab73e8a190 |
line wrap: on
line source
<tool id="changeGffFeatures" name="change gff Features"> <description>Change a feature in a GFF file (the feature is the 3rd column).</description> <command interpreter="bash"> ../Java/Python/changeGffFeatures.sh $inputFile $inputFeature $outputFeature >$outputFile </command> <inputs> <param name="inputFile" type="data" label="Input File" format="gff"/> <param name="inputFeature" type="text" value="exon" label="The feature you want to change"/> <param name="outputFeature" type="text" value="exon" label="The new feature"/> </inputs> <outputs> <data name="outputFile" format="gff" label="[changeGffFeatures] Output File"/> </outputs> <help> 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). </help> </tool>