You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Querying ICD-10 Codes that are not terminal i.e. C50-C50 results in querying the code itself and all subconcepts. As sites are only allowed to document terminal ICD-10 Codes we should only query terminal ICD-10 Codes to improve the performance:
library Retrieve
using FHIR version '4.0.0'
include FHIRHelpers version '4.0.0'
codesystem icd10: 'http://fhir.de/CodeSystem/bfarm/icd-10-gm'
context Patient
define InInitialPopulation:
exists [Condition: Code 'C50-C50' from icd10] or
exists [Condition: Code 'C50' from icd10] or
exists [Condition: Code 'C50.8' from icd10] or
exists [Condition: Code 'C50.9' from icd10] or
exists [Condition: Code 'C50.0' from icd10] or
exists [Condition: Code 'C50.2' from icd10] or
exists [Condition: Code 'C50.4' from icd10] or
exists [Condition: Code 'C50.6' from icd10] or
exists [Condition: Code 'C50.3' from icd10] or
exists [Condition: Code 'C50.5' from icd10] or
exists [Condition: Code 'C50.1' from icd10]
should be:
library Retrieve
using FHIR version '4.0.0'
include FHIRHelpers version '4.0.0'
codesystem icd10: 'http://fhir.de/CodeSystem/bfarm/icd-10-gm'
context Patient
define InInitialPopulation:
exists [Condition: Code 'C50.8' from icd10] or
exists [Condition: Code 'C50.9' from icd10] or
exists [Condition: Code 'C50.0' from icd10] or
exists [Condition: Code 'C50.2' from icd10] or
exists [Condition: Code 'C50.4' from icd10] or
exists [Condition: Code 'C50.6' from icd10] or
exists [Condition: Code 'C50.3' from icd10] or
exists [Condition: Code 'C50.5' from icd10] or
exists [Condition: Code 'C50.1' from icd10]
The text was updated successfully, but these errors were encountered:
alexanderkiel
added a commit
to medizininformatik-initiative/flare
that referenced
this issue
Jun 7, 2023
I introduced a new property called "abstract" to the term code tree node
that will not return it's term code in the expansion. The behaviour on
the current tree files will not change but new tree files can use that
"abstract" property.
See also: medizininformatik-initiative/sq2cql#7
Querying ICD-10 Codes that are not terminal i.e. C50-C50 results in querying the code itself and all subconcepts. As sites are only allowed to document terminal ICD-10 Codes we should only query terminal ICD-10 Codes to improve the performance:
should be:
The text was updated successfully, but these errors were encountered: