diff SMART/galaxy/restrictTranscriptList.xml @ 15:440ceca58672

Uploaded
author m-zytnicki
date Mon, 22 Apr 2013 11:08:07 -0400
parents 769e306b7933
children 94ab73e8a190
line wrap: on
line diff
--- a/SMART/galaxy/restrictTranscriptList.xml	Fri Apr 19 10:13:11 2013 -0400
+++ b/SMART/galaxy/restrictTranscriptList.xml	Mon Apr 22 11:08:07 2013 -0400
@@ -1,5 +1,5 @@
 <tool id="restrictTranscriptList" name="restrict transcript list">
-  <description>Keep the coordinates which are located in a given position.</description>
+  <description>Select the features which are located in a given locus.</description>
   <command interpreter="python"> ../Java/Python/restrictTranscriptList.py -i $formatType.inputFileName
 		#if $formatType.FormatInputFileName == 'bed':
 			-f bed
@@ -75,7 +75,7 @@
 	</conditional>	
   
 	<conditional name="OptionStart">
-			<param name="start" type="select" label="restrict to the start of the transcript">
+			<param name="start" type="select" label="start region of the locus">
 				<option value="Yes">Yes</option>
 				<option value="No" selected="true">No</option>
 			</param>
@@ -87,7 +87,7 @@
 	</conditional>
 		
 	<conditional name="OptionEnd">
-			<param name="end" type="select" label="restrict to the end of the transcript">
+			<param name="end" type="select" label="end region of the locus">
 				<option value="Yes">Yes</option>
 				<option value="No" selected="true">No</option>
 			</param>
@@ -105,4 +105,20 @@
 
   <help>
   </help>
+<tests>
+    <test>
+      <param name="FormatInputFileName" value="gtf" />
+      <param name="inputFileName" value="genes.gtf" />
+	<param name="Chrom" value="Yes"/>
+	<param name="ChromName" value="I"/>
+	<param name="start" value="No" />
+<param name="end" value="No" />
+      <output name="outputFile" file="exp_restrictTranscriptList.gff3" />
+    </test>
+  </tests>
+
+	<help>
+Reads a list of genomic coordinates and outputs those which on a given chromosome and / or between two given positions.
+	</help>
+
 </tool>