changeset 9:f9f1d0a0599a

planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538
author jpayne
date Sun, 05 May 2024 23:58:19 -0400
parents 832f269deeb0
children ccec96a537b7
files bio2srr.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/bio2srr.py	Sun May 05 23:47:10 2024 -0400
+++ b/bio2srr.py	Sun May 05 23:58:19 2024 -0400
@@ -7,6 +7,7 @@
 try:
     from itertools import batched
 except ImportError:
+    from itertools import islice
     def batched(iterable, n):
         "Batch data into tuples of length n. The last batch may be shorter."
         # batched('ABCDEFG', 3) --> ABC DEF G