From d3fa17d04f064b94dc22f1a7902ba615710b67c4 Mon Sep 17 00:00:00 2001 From: Manuel Lera-Ramirez Date: Thu, 17 Oct 2024 19:27:53 +0100 Subject: [PATCH] clear ovhgs before searching for safety --- src/pydna/user.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pydna/user.py b/src/pydna/user.py index 512a1eaf..323aa713 100644 --- a/src/pydna/user.py +++ b/src/pydna/user.py @@ -87,6 +87,8 @@ def search(self, dna, linear=True): # or should we just return the first cut site? -> Match # >>> Dseq("CGTCGCuCACACGT") # + + # Clear overhangs every time the search function is called self.ovhgs = list() results = list() for forward in [True, False]: