Source code for riverine.abbreviated


from .actions import *
from .components import *
from .experiments import Experiment
from .mixes import *
from .references import *
from .units import *

__all__ = (
    "Q_",
    "FV",
    "FC",
    "EC",
    "TC",
    "S",
    "C",
    "Ref",
    "Mix",
    "Exp",
    #    "µM",
    "uM",
    "nM",
    "mM",
    "nL",
    #   "µL",
    "uL",
    "mL",
    "ureg",
)

[docs] FV = FixedVolume
[docs] FC = FixedConcentration
[docs] EC = EqualConcentration
[docs] TC = ToConcentration
[docs] S = Strand
[docs] C = Component
[docs] Ref = Reference
[docs] Exp = Experiment
µM = ureg.Unit("µM")
[docs] uM = ureg.Unit("uM")
[docs] nM = ureg.Unit("nM")
[docs] mM = ureg.Unit("mM")
[docs] nL = ureg.Unit("nL")
µL = ureg.Unit("µL")
[docs] uL = ureg.Unit("uL")
[docs] mL = ureg.Unit("mL")