changeset 2:2fd6033d0e9c draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_length commit ad697ba869f1a81bb78168d3b81e360996fd2d52
author devteam
date Thu, 20 Jul 2017 13:49:07 -0400
parents c8cd0a03db49
children e626b3ff9922
files fasta_filter_by_length.xml
diffstat 1 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/fasta_filter_by_length.xml	Wed Nov 11 12:13:50 2015 -0500
+++ b/fasta_filter_by_length.xml	Thu Jul 20 13:49:07 2017 -0400
@@ -1,6 +1,12 @@
 <tool id="fasta_filter_by_length" name="Filter sequences by length" version="1.1">
 	<description></description>
-	<command interpreter="python">fasta_filter_by_length.py $input $min_length $max_length $output </command>
+	<command>
+		python $__tool_directory__/fasta_filter_by_length.py
+			'$input'
+			$min_length
+			$max_length
+			'$output'
+	</command>
 	<inputs>
 		<param name="input" type="data" format="fasta" label="Fasta file"/>
 		<param name="min_length" type="integer" value="0" label="Minimal length" />
@@ -27,7 +33,7 @@
 
 **What it does**
 	
-Outputs sequences between *Minimal length* and *Maximum length*.
+Outputs sequences greater than or equal to *Minimal length* and less than or equal to *Maximum length*. 
  
 -----
 
@@ -53,4 +59,4 @@
 
 
 	</help>
-</tool>
\ No newline at end of file
+</tool>