Type aliases#

lakeview._type_alias.Region#

A region of interest

alias of Union[str, Tuple[str, Tuple[float, float]], Tuple[str, None]]

lakeview._type_alias.Identifier#

Identifier

alias of Union[int, float, str, Tuple[collections.abc.Hashable, …]]

lakeview._type_alias.LinkIdentifier#

Link identifier

alias of Union[int, float, str, Tuple[collections.abc.Hashable, …]]

lakeview._type_alias.GroupIdentifier#

Group identifier

alias of Union[int, float, str, Tuple[collections.abc.Hashable, …]]

lakeview._type_alias.Color#

A color represented as one of the formats supported by Matplotlib. See https://matplotlib.org/stable/tutorials/colors/colors.html

alias of Union[Tuple[float, float, float], Tuple[float, float, float, float], str]

lakeview._type_alias.Point#

A point represented as tuple(x, y).

alias of Tuple[float, float]

lakeview._type_alias.Base#

a DNA base represented as a string

alias of Literal[‘A’, ‘T’, ‘C’, ‘G’]