bionty.CellMarker

class bionty.CellMarker(name: str, synonyms: str | None, gene_symbol: str | None, ncbi_gene_id: str | None, uniprotkb_id: str | None, organism: Organism | None, source: Source | None)

Bases: BioRecord, TracksRun, TracksUpdates

Cell markers - CellMarker.

Notes

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

Bulk create CellMarker records via from_values().

Examples

>>> record = bionty.CellMarker.from_source(name="PD1", organism="human")

Simple fields

uid: str

A universal id (hash of selected field).

name: str

Unique name of the cell marker.

synonyms: str | None

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

description: str | None

Description of the cell marker.

gene_symbol: str | None

Gene symbol that corresponds to this cell marker.

ncbi_gene_id: str | None

NCBI gene id that corresponds to this cell marker.

uniprotkb_id: str | None

Uniprotkb id that corresponds to this cell marker.

created_at: datetime

Time of creation of record.

updated_at: datetime

Time of last update to record.

Methods