view SMART/galaxy/removeExonLines.xml @ 64:783e6ed4eb66

Minor bug correction. Added casts to str in Galaxy XML files. Also closed the writer in the Python script "changeTagName."
author m-zytnicki
date Mon, 19 Oct 2015 14:16:44 +0200
parents 2a4884ba3e5c
children
line wrap: on
line source

<tool id="removeExonLines" name="remove exon lines">
  <description>Removes the introns of the transcript files.</description>
	<requirements>
		<requirement type="set_environment">PYTHONPATH</requirement>
	</requirements>
  <command interpreter="python"> ../Java/Python/RemoveExons.py -i $inputFile -f gff3 -o $outputFile  </command>
  <inputs>
		<param name="inputFile" format="gff3" type="data" label="Input File"/>
  </inputs>

  <outputs>
    <data format="gff3" name="outputFile" label="[remove introns] output file"/>
  </outputs>

  <help>
	Simply remove the introns of the input file, thus getting the unmatured transcript.
  </help>
</tool>