-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filter Qualitative Values without Version #117
Comments
I found a simpler way to test via equivalence: using FHIR version '4.0.0'
include FHIRHelpers version '4.0.0'
codesystem loinc: 'http://loinc.org/'
codesystem uiccstadiumcs: 'http://dktk.dkfz.de/fhir/onco/core/CodeSystem/UiccstadiumCS'
context Patient
define Criterion:
exists (from [Observation: Code '21908-9' from loinc] O
where O.value ~ Code 'IIA' from uiccstadiumcs)
define InInitialPopulation:
Criterion It's just possible to apply the equivalence operator to a FHIR CodeableConcept and a CQL Code. |
We have to wait until all sites have at least the v0.29 of Blaze deployed. |
I already changes the test in Blaze: samply/blaze#2229 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
IS:
Qualitative values are currently filtered for with the version, as the generated cql query uses "contains", which compares using equal.
SHOULD:
Qualitative values should be filtered for without the version.
The generated cql query should then use "equivalent" instead of "contains.
Examples
CQL with contains (IS)
CQL with equivalent (SHOULD)
Example FHIR resource as json which contains value code
The text was updated successfully, but these errors were encountered: