Mercurial > repos > yufei-luo > s_mart
view SMART/galaxy/changeGffFeatures.xml @ 36:44d5973c188c
Uploaded
author | m-zytnicki |
---|---|
date | Tue, 30 Apr 2013 15:02:29 -0400 |
parents | |
children |
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>