From 7446d19417057db04356d79989caf97e6f043746 Mon Sep 17 00:00:00 2001 From: Matt Stone Date: Mon, 23 Sep 2024 10:36:53 -0400 Subject: [PATCH] refactor: export OffTargetDetector --- prymer/offtarget/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/prymer/offtarget/__init__.py b/prymer/offtarget/__init__.py index 8a460e8..31f85c1 100644 --- a/prymer/offtarget/__init__.py +++ b/prymer/offtarget/__init__.py @@ -3,6 +3,7 @@ from prymer.offtarget.bwa import BwaResult from prymer.offtarget.bwa import Query from prymer.offtarget.offtarget_detector import OffTargetResult +from prymer.offtarget.offtarget_detector import OffTargetDetector __all__ = [ "BwaAlnInteractive", @@ -10,4 +11,5 @@ "BwaHit", "BwaResult", "OffTargetResult", + "OffTargetDetector", ]