view SMART/galaxy/changeGffFeatures.xml @ 31:0ab839023fe4

Uploaded
author m-zytnicki
date Tue, 30 Apr 2013 14:33:21 -0400
parents 94ab73e8a190
children
line wrap: on
line source

<tool id="changeGffFeatures" name="change gff Features">
	<description>Changes one feature name by an other name (the feature name can be found on 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="A given feature, you must choose a feature name(on the 3rd column)."/>
	      <param name="outputFeature" type="text" value="exon" label="You must choose an other feature name(on the 3rd column)."/>
      </inputs>

      <outputs>
             <data name="outputFile" format="gff" label="[changeGffFeatures] Output File"/>
      </outputs> 
</tool>