Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "submodules/va_spec"]
path = submodules/va_spec
url = https://github.com/ga4gh/va-spec
branch = 1.0
branch = v1
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ dynamic = ["version"]
dependencies = [
"ga4gh.vrs>=2.2.0,<3.0",
"ga4gh.cat_vrs~=0.7.1",
"pydantic>=2.0,<3.0"
"pydantic>=2.0,<3.0",
"typing_extensions",
]

[project.optional-dependencies]
Expand Down
38 changes: 24 additions & 14 deletions src/ga4gh/va_spec/aac_2017/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,31 @@
"""Module to load and init namespace at package level."""

from .models import (
AMP_ASCO_CAP_LEVELS,
AMP_ASCO_CAP_TIERS,
Classification,
Strength,
VariantDiagnosticStudyStatement,
VariantPrognosticStudyStatement,
VariantTherapeuticResponseStudyStatement,
AMP_ASCO_CAP_CLASSIFICATION_CODES,
AMP_ASCO_CAP_CLASSIFICATION_MAP,
AMP_ASCO_CAP_EVIDENCE_LINE_STRENGTHS,
AmpAscoCapClassificationCode,
AmpAscoCapClassificationName,
AmpAscoCapEvidenceLine,
AmpAscoCapEvidenceLineStrength,
AsmpAscoCapStrengthCode,
DiagnosticEvidenceLine,
PrognosticEvidenceLine,
TherapeuticEvidenceLine,
VariantClinicalSignificanceStatement,
)

__all__ = [
"AMP_ASCO_CAP_LEVELS",
"AMP_ASCO_CAP_TIERS",
"Classification",
"Strength",
"VariantDiagnosticStudyStatement",
"VariantPrognosticStudyStatement",
"VariantTherapeuticResponseStudyStatement",
"AMP_ASCO_CAP_CLASSIFICATION_CODES",
"AMP_ASCO_CAP_CLASSIFICATION_MAP",
"AMP_ASCO_CAP_EVIDENCE_LINE_STRENGTHS",
"AmpAscoCapClassificationCode",
"AmpAscoCapClassificationName",
"AmpAscoCapEvidenceLine",
"AmpAscoCapEvidenceLineStrength",
"AsmpAscoCapStrengthCode",
"DiagnosticEvidenceLine",
"PrognosticEvidenceLine",
"TherapeuticEvidenceLine",
"VariantClinicalSignificanceStatement",
]
Loading