Source code for src.obj.motif_concentration_vector

from .motif_vector import MotifVector
from .units import make_unit

[docs] def MotifConcentrationVector(motiflength : int, alphabet : str): unit = make_unit('mol')/make_unit('L') return MotifVector(motiflength, alphabet, unit)