-
Notifications
You must be signed in to change notification settings - Fork 27
Repository Descriptions and Relationships
Bonnie is an application that enables measure developers to test their electronic clinical quality measures (eCQMs) by creating a test deck of synthetic patient records. These synthetic patient records are calculated against the measure logic and help ensure that the clinical intent of the measure is being met.
Bonnie depends on:
- Bonnie Bundler
- Health Data Standards
- Quality Measure Engine
- HQMF2js
- HQuery Patient API
- SimpleXML Parser
Bonnie Bundler manages loading XML or MAT packages and outputting reports. It uses the Health Data Standards library to manage the HQMF XML loading and the SimpleXML Parser to manage the SimpleXML loading. It uses the Quality Measure Engine for creating bundle export. The bundle exports are used by the Cypress team. Bonnie Bundler is given a configuration file from Bonnie (bonnie/config/bonnie.yml
).
Bonnie Bundler depends on:
- Health Data Standards
- Quality Measure Engine
- HQMF2js
- HQuery Patient API
- SimpleXML Parser
Health Data Standards is a library that parses and generates various health data standards. Relevant to Bonnie, Health Data Standards manages parsing HQMF-QDM measures and puts them into an HQMF document model. Additionally, Health Data Standards generates the QRDA documents associated with the synthetic patient test sets included in Bonnie.
Health Data Standards does not have any internal dependencies.
HQMF2js takes a measure represented as an HQMF document model (as defined in Health Data Standards) and converts the measure logic to javascript code to be used in client-side measure calculations.
HQMF2js depends on
- HQuery Patient API
- Health Data Standards.
The hQuery Patient API creates an interface to allow patient calculations to be done across patient models. In Bonnie, the Patient API is only used in the auto-generated JavaScript logic. It takes a patient model as an argument. The resulting patient object is used in all of the calculation methods.
hQuery Patient API does not have any internal dependencies.
The Quality Measure Engine calculates clinical quality measures over a given population. The results are output in JSON and the measure logic is output in JavaScript. The Quality Measure Engine is exclusively used in Bonnie to create bundles for Cypress. It is used by the Bonnie Bundler project.
Quality Measure Engine has no internal dependencies.
SimpleXML Parser parses the MAT SimpleXML format into the HQMF Document model, the representation of a measure in Health Data Standards.
SimpleXML Parser depends on
- Health Data Standards