Skip to content

Commit d8d2981

Browse files
committed
wip: baseline for working on conversion tool
1 parent 72ada6d commit d8d2981

File tree

10 files changed

+209
-140
lines changed

10 files changed

+209
-140
lines changed

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@ classifiers = [
2929
"Programming Language :: Python",
3030
"Topic :: Software Development :: Libraries :: Python Modules"
3131
]
32-
dependencies = ["coloredlogs ~= 15.0", "pyyaml ~= 6.0"]
32+
dependencies = [
33+
"coloredlogs ~= 15.0",
34+
"ga4gh.cat_vrs~=0.7.1",
35+
"ga4gh.va_spec~=0.4.2",
36+
"ga4gh.vrs==2.1.3",
37+
"pyyaml ~= 6.0"
38+
]
3339
description = "biocommons.example package (namespaced)"
3440
dynamic = ["version"]
3541
license = "Apache-2.0"

src/biocommons/example/__init__.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/biocommons/example/__main__.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

src/biocommons/example/marvin.py

Lines changed: 0 additions & 43 deletions
This file was deleted.

src/biocommons/example/marvin_adjacent_test.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/biocommons/example/quotes.yaml

Lines changed: 0 additions & 47 deletions
This file was deleted.

src/biocommons/gks-conversion-tool/__init__.py

Whitespace-only changes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""Converter for GKS <-> HL7"""
2+
3+
import logging
4+
5+
_logger = logging.getLogger(__name__)
6+
7+
8+
def convert_gks_to_hl7(statement) -> dict:
9+
"""convert GKS to HL7"""
10+
11+
return {}

src/biocommons/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""A file for models used in the converter tool"""

uv.lock

Lines changed: 190 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)