npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fhir-bundle-calculator

v4.0.0

Published

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

Downloads

4

Readme

FHIR-bundle-calculator

CI

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

Usage

Prerequisites

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:

  1. git clone https://github.com/projecttacoma/fhir-bundle-calculator
  2. cd fhir-bundle-calculator
  3. 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