Previous changeset 1:c8cd0a03db49 (2015-11-11) Next changeset 3:e626b3ff9922 (2019-12-17) |
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_length commit ad697ba869f1a81bb78168d3b81e360996fd2d52 |
modified:
fasta_filter_by_length.xml |
b |
diff -r c8cd0a03db49 -r 2fd6033d0e9c fasta_filter_by_length.xml --- 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 |
b |
@@ -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> |