# HG changeset patch # User brinkmanlab # Date 1592942069 14400 # Node ID 71831ead9e168d6feb46d707613e2cdc5f37efd7 # Parent 38fbb67f0dacee49cb0e6e38b241817d04670edb "planemo upload for repository https://github.com/brinkmanlab/galaxy-tools/tree/master/mauve_contig_mover commit f3a482a9df3fd689699752cdd0751e83670e3b64" diff -r 38fbb67f0dac -r 71831ead9e16 stitch.py --- a/stitch.py Tue Jun 16 13:30:24 2020 -0400 +++ b/stitch.py Tue Jun 23 15:54:29 2020 -0400 @@ -128,10 +128,5 @@ result.id = seqid result.description = "" - seqlenlen = len(str(len(result))) - if len(result.id) + 1 + seqlenlen > 28: - # Genbank has a max length for the id and sequence length number, truncate the sequence id ov too long - result.id = result.id[:27 - seqlenlen] - result.seq.alphabet = Alphabet.generic_dna # TODO Investigate why this is required for some datasets SeqIO.write(result, sys.stdout, draft_format)