We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a5821 commit 233b745Copy full SHA for 233b745
execution_engine/omop/vocabulary.py
@@ -110,6 +110,15 @@ class ICD10GM(AbstractStandardVocabulary):
110
omop_vocab_name = "ICD10GM"
111
112
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
122
class UCUM(AbstractStandardVocabulary):
123
"""
124
UCUM vocabulary.
@@ -232,6 +241,7 @@ def init(self) -> None:
232
241
self.register(UCUM)
233
242
self.register(ATCDE)
234
243
self.register(ICD10GM)
244
+ self.register(ICD10CM)
235
245
self.register(CODEXCELIDA)
236
246
237
247
def register(self, vocabulary: Type[AbstractVocabulary]) -> None:
0 commit comments