🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

fhir-bundle-calculator

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fhir-bundle-calculator

A CLI for outputting population statistics and MeasureReports for FHIR patients for an eCQM using the $evaluate-measure operation

latest
Source
npmnpm
Version
4.0.0
Version published
Maintainers
1
Created
Source

FHIR-bundle-calculator

CI

A CLI for outputting population statistics and MeasureReports for FHIR patients for a FHIR-based eCQM

Usage

Prerequisites

  • Node.js >=10.15.1

Installation with NPM

npm install -g fhir-bundle-calculator

Installation can be verified with the --version flag:

calculate-bundles --version
X.Y.Z

Usage:

calculate-bundles [--options]

Available options:

-v, --version                          print the current version
-t, --type <type>                      type of calculation (choices: "http", "fqm", default: "fqm")
-d, --directory <input-directory>      path to directory of patient Bundles
-b, --measure-bundle <measure-bundle>  path to measure bundle; required when type is "fqm"
-m, --measure-id <measure-id>          measure ID to evaluate; required when type is "http"
-u, --url <url>                        base URL of running FHIR server; required when type is "http"
-s, --period-start <yyyy-mm-dd>        start of the calculation period (default: "2019-01-01")
-e, --period-end <yyyy-mm-dd>          end of the calculation period (default: "2019-12-31")
-h, --help                             display help for command

Calculation with fqm-execution (default)

By default, fhir-bundle-calculator uses the fqm-execution library to calculate FHIR MeasureReports.

This library requires a Bundle be provided containing the FHIR Measure resource, any relevant FHIR Library resources, and any FHIR ValueSet resources needed for measure calculation. This is provided via the -b/--measure-bundle flag:

e.g.

calculate-bundles -d /path/to/patient/bundles -b /path/to/measure/bundle

Calculation with cqf-ruler

fhir-bundle-calculator can be used to communicate with any FHIR server that supports the $evaluate-measure FHIR operation

The cqf-ruler reference implementation is one such server. See their usage instructions or use a public sandbox to quickly get started.

Run the CLI wih output type "http", and provide the ID of the FHIR Measure resourcea along with the URL of the server:

e.g.

calculate-bundles -d /path/to/patient/bundles -t http -u http://localhost:8080/cqf-ruler-r4/fhir -m myMeasureID

Local Usage

You can run the CLI from source:

  • git clone https://github.com/projecttacoma/fhir-bundle-calculator
  • cd fhir-bundle-calculator
  • npm install

This will pull the source code and install the necessary dependencies. You can run the CLI with the following command:

node src/cli.js [--options]

Options are the same as above.

Output

The CLI will create a directory called output, and inside this directory will be a subdirectory with a timestamp containing the results. Including:

  • A file results.csv of the following format:
"bundle","population"
"<bundle-name>","<numerator|denominator|ipop|none>"
  • Subdirectories for each population, containing the bundles that fell into those populations. NOTE: This will not duplicate bundles. E.g. if a patient falls into the numerator, they will only appear in that directory since it is a subset of the other two. Similar reasoning applies to a patient falling into the denominator as it is a subset of the IPOP.
  • Indivual MeasureReports that were returned by the server after each $evaluate-measure call
output
├── results-YYYY-MM-DD-THHmmss
│   ├── denominator
│   │   ├── a-patient-bundle.json
│   │   └── ...
│   ├── ipop
│   │   ├── a-patient-bundle.json
│   │   └── ...
│   ├── numerator
│   │   ├── a-patient-bundle.json
│   │   └── ...
│   ├── none
│   │   ├── a-patient-bundle.json
│   │   └── ...
│   ├── measure-reports
│   │   ├── a-measure-report.json
│   │   └── ...
│   └── results.csv
└──

Debugging

Some initial logging is done for the CLI, but more verbose logging can be done by setting DEBUG=true in the environment.

Example:

DEBUG=true calculate-bundles [--options]

Unit Testing

This library is configured with jest to make assertions about calculation under a controlled environment. It uses nock to mock HTTP responses for the $cql operation for unit testing.

To run the tests, simply run the command npm test

FAQs

Package last updated on 10 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts