Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: update gks-common / vrs models #453

Merged
merged 11 commits into from
Oct 30, 2024
15 changes: 2 additions & 13 deletions src/ga4gh/core/domain_models.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
"""GKS Common Library Domain Entity models

**This module should not be imported directly.**

Instead, users should use one of the following:

* `from ga4gh.core import domain_models`, and refer to models with the
abbreviated name, e.g., `domain_models.Gene` (recommended)

* `import ga4gh.core`, and refer to models using the fully-qualified
module name, e.g., `ga4gh.core.domain_models.Gene`
"""
"""GKS Common Library Domain Entity models"""
from enum import Enum
from typing import Literal, Union, List

Expand Down Expand Up @@ -138,5 +127,5 @@ class Gene(DomainEntity):

type: Literal["Gene"] = Field(
CommonDomainType.GENE.value,
description=f'MUST be "{CommonDomainType.GENE.value}".'
description=f'MUST be "{CommonDomainType.GENE.value}"'
)
Loading