clinical_quality_language icon indicating copy to clipboard operation
clinical_quality_language copied to clipboard

Clinical Quality Language (CQL) is an HL7 specification for the expression of clinical knowledge that can be used within both the Clinical Decision Support (CDS) and Clinical Quality Measurement (CQM)...

Results 264 clinical_quality_language issues
Sort by recently updated
recently updated
newest added

To calculate 1'g/cm3' / 1'g/cm3'. the current code gets the result of 1 'g/cm3'. UcumService.divideBy gets the result of 1 '' expected result: 1 '1'

Calculate Log(1, 1). The current code gets 0. Expected result: null (undefined)

Calculate 1.0 'cm' * 2.0 'cm'. The current code gets 2.00 'cm'. UcumService.multiply gets 0.00020 'm2' (auto conversion to m2). expected result: 2.0 cm2

Calculate 10L div 3L. The current code throws the exception of InvalidOperatorArgument. Expected result: 3L

The element named "type" in SearchInfo will be problematic for JSON serialization and should be deprecated (all the other elements named "type" were deprecated in ELM and ModelInfo schemas): [...

enhancement

While looking at the ELM of CMS130FHIR-v0.1.000 from the January 2024 Connectathon bundles, we noticed a peculiar translation of a retrieve on `MedicationRequest`. The AdvancedIllnessandFrailty 1.8.000 CQL Library has the...

Help APHL team with merge back issues.

The spec clearly indicates the ToDateTime(Date) operator will return a DateTime with the time components unspecified. The following tests validate this behavior (from the published spec test suite): ToDateTimeDate ToDateTimeTimeUnspecified...

bug

This expression currently returns false: ```cql define Test1: Tuple { Id : 1, Name : 'John' } = Tuple { Id : 2, Name : null } ``` But tuples...

bug