bionty.CellLine

class bionty.CellLine(name: str, ontology_id: str | None, abbr: str | None, synonyms: str | None, description: str | None, parents: list[CellLine], source: Source | None)

Bases: BioRecord, TracksRun, TracksUpdates

Cell lines - Cell Line Ontology.

Notes

For more info, see tutorials Manage biological registries and CellLine.

Bulk create CellLine records via from_values().

Examples

>>> standard_name = bionty.CellLine.public().standardize(["K562"])[0]
>>> record = bionty.CellLine.from_source(name=standard_name)

Simple fields

uid: str

A universal id (hash of selected field).

name: str

Name of the cell line.

ontology_id: str | None

Ontology ID of the cell line.

abbr: str | None

A unique abbreviation of cell line.

synonyms: str | None

Bar-separated (|) synonyms that correspond to this cell line.

description: str | None

Description of the cell line.

created_at: datetime

Time of creation of record.

updated_at: datetime

Time of last update to record.

Methods