Skip to content

Commit 38f693a

Browse files
committed
Print error in append_primers if primers are contained in the original sequence
1 parent 1014834 commit 38f693a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

micall/utils/append_primers.py

+10
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,16 @@ def append_primers_to_record(record: SeqRecord,
4343
is the forward primer + original sequence + reverse primer.
4444
"""
4545

46+
if fwd_primer in record.seq:
47+
pos = record.seq.index(fwd_primer)
48+
logger.error("Sequence %r contains the forward primer at position %s.",
49+
record.name, pos)
50+
51+
if rev_primer in record.seq:
52+
pos = record.seq.index(rev_primer)
53+
logger.error("Sequence %r contains the reverse primer at position %s.",
54+
record.name, pos)
55+
4656
new_seq = Seq(fwd_primer + str(record.seq) + rev_primer)
4757
new_record = SeqRecord(
4858
new_seq,

0 commit comments

Comments
 (0)