-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
52 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from dataclasses import dataclass | ||
|
||
from fgpyo.util.metric import Metric | ||
|
||
from prymer.api.primer import Primer | ||
|
||
|
||
@dataclass(frozen=True, init=True, kw_only=True, slots=True) | ||
class Probe(Primer, Metric["Probe"]): | ||
"""Stores the properties of the designed Probe. Inherits `tm`, `penalty`, | ||
`span`, `bases`, and `tail` from `Primer`. | ||
Attributes: | ||
self_any_th: self-complementarity throughout the probe as calculated by Primer3 | ||
self_end_th: 3' end complementarity of the probe as calculated by Primer3 | ||
hairpin_th: hairpin formation thermodynamics of the probe as calculated by Primer3 | ||
""" | ||
|
||
self_any_th: float | ||
self_end_th: float | ||
hairpin_th: float |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters