Skip to content

Commit aba0a28

Browse files
committed
Fix end overhang missing.
1 parent 8ea0a6c commit aba0a28

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/schemarecomb/libraries.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,8 @@ def dna_blocks(self):
496496
' end_dna.')
497497

498498
oh_seq = oh_end.seq.lower()
499-
amino_overhang = matching_codon[:begin_dot]
499+
amino_overhang = (matching_codon[:begin_dot]
500+
+ oh_seq)
500501
else:
501502
amino_overhang = oh_start.seq.lower()
502503

0 commit comments

Comments
 (0)