bionty.Ethnicity#

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

Bases: BioRegistry

Ethnicity - Human Ancestry Ontology.

Notes

For more info, see tutorial Manage biological registries

Bulk create Ethnicity records via from_values.

Examples

>>> record = bionty.Ethnicity.from_public(name="European")
>>> record.save()

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 ethnicity.

ontology_id CharField

Ontology ID of the ethnicity.

abbr CharField

A unique abbreviation of ethnicity.

synonyms TextField

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

description TextField

Description of the ethnicity.

public_source ForeignKey

PublicSource this ethnicity 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 ethnicity records.

artifacts ManyToManyField

Artifacts linked to the ethnicity.

collections ManyToManyField

Collections linked to the ethnicity.

Methods