Repository 'fasta_compute_length'
hg clone https://toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length

Changeset 5:7d37cfda8e00 (2020-03-02)
Previous changeset 4:e12f68d2cc4e (2020-03-01) Next changeset 6:5cbde03c1103 (2024-10-03)
Commit message:
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_length commit 34a6c9f94a5722bb7d2f887618aafa410a770e91"
modified:
fasta_compute_length.xml
utils/fasta_to_len.py
b
diff -r e12f68d2cc4e -r 7d37cfda8e00 fasta_compute_length.xml
--- 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
b
@@ -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>
b
diff -r e12f68d2cc4e -r 7d37cfda8e00 utils/fasta_to_len.py
--- 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)