bionty.Disease#

class bionty.Disease(name: str, ontology_id: str | None, abbr: str | None, synonyms: str | None, description: str | None, parents: list[lnschema_bionty.models.Disease], public_source: lnschema_bionty.models.PublicSource | None)#
class bionty.Disease(*db_args)

Bases: BioRegistry

Diseases - Mondo, Human Disease.

Notes

For more info, see tutorial Manage biological registries

Bulk create Disease records via from_values.

Examples

>>> record = bionty.Disease.from_public(name="Alzheimer disease")

Fields

id AutoField

Internal id, valid only in one DB instance.

uid CharField

A universal id (hash of selected field).

name CharField

Name of the disease.

ontology_id CharField

Ontology ID of the disease.

abbr CharField

A unique abbreviation of disease.

synonyms TextField

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

description TextField

Description of the disease.

public_source ForeignKey

PublicSource this disease associates with.

created_at DateTimeField

Time of creation of record.

updated_at DateTimeField

Time of last update to record.

created_by ForeignKey

Creator of record, a User.

parents ManyToManyField

Parent disease records.

artifacts ManyToManyField

Artifacts linked to the disease.

collections ManyToManyField

Collections linked to the disease.

Methods