From 2e6d58c92ec0868124abd38381e5c85466aa384a Mon Sep 17 00:00:00 2001 From: Matt Stone Date: Mon, 23 Sep 2024 09:55:47 -0400 Subject: [PATCH] refactor: export Primer3Parameters and Primer3Weights --- prymer/primer3/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/prymer/primer3/__init__.py b/prymer/primer3/__init__.py index d52d7e3..beec032 100644 --- a/prymer/primer3/__init__.py +++ b/prymer/primer3/__init__.py @@ -4,9 +4,11 @@ from prymer.primer3.primer3_failure_reason import Primer3FailureReason from prymer.primer3.primer3_input import Primer3Input from prymer.primer3.primer3_input_tag import Primer3InputTag +from prymer.primer3.primer3_parameters import Primer3Parameters from prymer.primer3.primer3_task import DesignLeftPrimersTask from prymer.primer3.primer3_task import DesignPrimerPairsTask from prymer.primer3.primer3_task import DesignRightPrimersTask +from prymer.primer3.primer3_weights import Primer3Weights __all__ = [ "Primer3", @@ -18,4 +20,6 @@ "DesignLeftPrimersTask", "DesignPrimerPairsTask", "DesignRightPrimersTask", + "Primer3Parameters", + "Primer3Weights", ]