# HG changeset patch # User jpayne # Date 1714967899 14400 # Node ID f9f1d0a0599a43455ce6054b3c1732dbfff6bfed # Parent 832f269deeb0bfb03ed5141bc630ff096a065ed0 planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538 diff -r 832f269deeb0 -r f9f1d0a0599a bio2srr.py --- 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