changeset 5:7d37cfda8e00 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_length commit 34a6c9f94a5722bb7d2f887618aafa410a770e91"
author devteam
date Mon, 02 Mar 2020 06:46:51 -0500
parents e12f68d2cc4e
children
files fasta_compute_length.xml utils/fasta_to_len.py
diffstat 2 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/fasta_compute_length.xml	Sun Mar 01 07:24:10 2020 -0500
+++ b/fasta_compute_length.xml	Mon Mar 02 06:46:51 2020 -0500
@@ -1,4 +1,4 @@
-<tool id="fasta_compute_length" name="Compute sequence length" version="1.0.2" profile="16.04">
+<tool id="fasta_compute_length" name="Compute sequence length" version="1.0.3" profile="16.04">
     <description></description>
     <requirements>
         <requirement type="package" version="3.7">python</requirement>
--- a/utils/fasta_to_len.py	Sun Mar 01 07:24:10 2020 -0500
+++ b/utils/fasta_to_len.py	Mon Mar 02 06:46:51 2020 -0500
@@ -7,8 +7,6 @@
 
 import sys
 
-assert sys.version_info[:2] >= (2, 4)
-
 
 def compute_fasta_length(fasta_file, out_file, keep_first_char, keep_first_word=False):
     keep_first_char = int(keep_first_char)