bionty.DevelopmentalStage

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

Bases: BioRecord, TracksRun, TracksUpdates

Developmental stages - Human Developmental Stages, Mouse Developmental Stages. # noqa.

Notes

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

Bulk create DevelopmentalStage records via from_values.

Examples

>>> record = bionty.DevelopmentalStage.from_public(name="neurula stage")
>>> record.save()

Fields

run: Run

Last run that created or updated the record.

id

Internal id, valid only in one DB instance.

uid

A universal id (hash of selected field).

name

Name of the developmental stage.

ontology_id

Ontology ID of the developmental stage.

abbr

A unique abbreviation of developmental stage.

synonyms

Bar-separated (|) synonyms that correspond to this developmental stage.

description

Description of the developmental stage.

source

Source this developmental stage associates with.

previous_runs: Run

Sequence of runs that created or updated the record.

parents

Parent developmental stage records.

artifacts

Artifacts linked to the developmental stage.

created_at: datetime

Time of creation of record.

created_by: User

Creator of record.

updated_at: datetime

Time of last update to record.

Methods