Skip to content

Commit 233b745

Browse files
committed
feat: add ICD10CM
1 parent 35a5821 commit 233b745

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

execution_engine/omop/vocabulary.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,15 @@ class ICD10GM(AbstractStandardVocabulary):
110110
omop_vocab_name = "ICD10GM"
111111

112112

113+
class ICD10CM(AbstractStandardVocabulary):
114+
"""
115+
ICD10 Clinical Modification
116+
"""
117+
118+
system_uri = "http://hl7.org/fhir/sid/icd-10-cm"
119+
omop_vocab_name = "ICD10CM"
120+
121+
113122
class UCUM(AbstractStandardVocabulary):
114123
"""
115124
UCUM vocabulary.
@@ -232,6 +241,7 @@ def init(self) -> None:
232241
self.register(UCUM)
233242
self.register(ATCDE)
234243
self.register(ICD10GM)
244+
self.register(ICD10CM)
235245
self.register(CODEXCELIDA)
236246

237247
def register(self, vocabulary: Type[AbstractVocabulary]) -> None:

0 commit comments

Comments
 (0)