├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── feature-request.md │ └── general-issue-template.md ├── gitleaks.toml ├── pull_request_template.md └── workflows │ ├── ci.yml │ └── main.yml ├── .gitignore ├── .nojekyll ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── contributing.md ├── data-requirements ├── README.md ├── compare.sh ├── elm-parser-dr │ └── .gitkeep ├── fqm-e-dr.ts ├── fqm-e-dr │ └── .gitkeep ├── jan-2024-connectathon │ └── .gitkeep ├── sept-2023-connectathon │ └── .gitkeep ├── summary-compare.sh └── summary-compare.ts ├── governance.md ├── index.html ├── jest.config.js ├── package.json ├── regression ├── bundles │ └── .gitkeep ├── default-bundles │ └── .gitkeep ├── output │ └── .gitkeep ├── regression.ts └── run-regression.sh ├── src ├── calculation │ ├── AbstractMeasureReportBuilder.ts │ ├── Calculator.ts │ ├── ClauseResultsBuilder.ts │ ├── CompositeReportBuilder.ts │ ├── DetailedResultsBuilder.ts │ ├── GapsReportBuilder.ts │ ├── HTMLBuilder.ts │ └── MeasureReportBuilder.ts ├── cli.ts ├── code-system │ └── cts-metadata.json ├── compartment-definition │ └── SearchParameters.ts ├── execution │ ├── Execution.ts │ ├── VSACHelper.ts │ ├── ValueSetHelper.ts │ └── ValueSetResolver.ts ├── helpers │ ├── ClauseResultsHelpers.ts │ ├── DataRequirementHelpers.ts │ ├── DebugHelpers.ts │ ├── DetailedResultsHelpers.ts │ ├── MeasureBundleHelpers.ts │ ├── ReportBuilderFactory.ts │ ├── ValueComparisonHelpers.ts │ └── elm │ │ ├── ELMDependencyHelpers.ts │ │ ├── ELMHelpers.ts │ │ ├── ELMInfoCache.ts │ │ ├── QueryFilterParser.ts │ │ └── RetrievesHelper.ts ├── index.ts ├── templates │ ├── clause.ts │ └── main.ts └── types │ ├── CQLPatient.ts │ ├── CQLTypes.ts │ ├── Calculator.ts │ ├── ELMTypes.ts │ ├── Enums.ts │ ├── QueryFilterTypes.ts │ ├── errors │ ├── CustomErrors.ts │ └── GracefulError.ts │ └── index.ts ├── static ├── coverage-highlighting-example.png ├── logic-highlighting-example-2.png ├── logic-highlighting-example.png ├── population-diagram.png └── sde-sex-highlighting-example.png ├── test ├── integration │ ├── Makefile │ ├── README.md │ ├── composite-all-or-nothing │ │ ├── composite-all-or-nothing-bundle.json │ │ ├── composite-all-or-nothing.test.ts │ │ ├── cql │ │ │ ├── all-or-nothing-component-one.cql │ │ │ └── all-or-nothing-component-two.cql │ │ └── patients │ │ │ ├── patient-comp1-denom-comp2-denom-bundle.json │ │ │ ├── patient-comp1-denom-comp2-numer-bundle.json │ │ │ ├── patient-comp1-numer-comp2-denom-bundle.json │ │ │ └── patient-comp1-numer-comp2-numer-bundle.json │ ├── composite-weighted │ │ ├── composite-weighted-bundle.json │ │ ├── composite-weighted.test.ts │ │ ├── cql │ │ │ ├── weighted-component-one.cql │ │ │ └── weighted-component-two.cql │ │ └── patients │ │ │ ├── patient-comp1-denom-comp2-numer-bundle.json │ │ │ └── patient-comp1-numer-comp2-numer-bundle.json │ ├── helpers │ │ ├── cql │ │ │ └── FHIRHelpers-4.0.1.cql │ │ └── testHelpers.ts │ ├── pretty-various-types │ │ ├── cql │ │ │ └── pretty-various-types.cql │ │ ├── patients │ │ │ └── detailed-encounter.json │ │ ├── pretty-various-types-bundle.json │ │ └── pretty-various-types.test.ts │ ├── proportion-Encounter-tuple │ │ ├── cql │ │ │ └── proportion-Encounter-tuple.cql │ │ ├── patients │ │ │ └── patient-2Enc-1day-3day.json │ │ ├── proportion-Encounter-tuple-bundle.json │ │ └── proportion-Encounter-tuple.test.ts │ ├── proportion-boolean │ │ ├── cql │ │ │ └── proportion-boolean.cql │ │ ├── patients │ │ │ ├── patient-denom-bundle.json │ │ │ ├── patient-ipp-bundle.json │ │ │ └── patient-numer-bundle.json │ │ ├── proportion-boolean-bundle.json │ │ └── proportion-boolean.test.ts │ ├── ratio-Encounter-reuseObservationFunction │ │ ├── cql │ │ │ └── ratio-Encounter-reuseObservationFunction.cql │ │ ├── patients │ │ │ ├── patient-2enc-1in-all-1daylong.json │ │ │ ├── patient-2enc-1in-denom-1in-numer.json │ │ │ ├── patient-2enc-1in-denom-only.json │ │ │ ├── patient-2enc-1in-numer-only.json │ │ │ ├── patient-2enc-2in-denom-1in-numer.json │ │ │ └── patient-3enc-1in-all-2in-denom.json │ │ ├── ratio-Encounter-reuseObservationFunction-bundle.json │ │ └── ratio-Encounter-reuseObservationFunction.test.ts │ └── valuesets │ │ ├── exampleValueSet.json │ │ ├── exampleValueSet2.json │ │ └── exampleValueSet3.json └── unit │ ├── ClauseResultsBuilder.test.ts │ ├── ClauseResultsHelper.test.ts │ ├── CompositeReportBuilder.test.ts │ ├── DataRequirementHelpers.getFlattenedRelatedArtifacts.test.ts │ ├── DataRequirementHelpers.test.ts │ ├── DetailedResultsBuilder.test.ts │ ├── ELMDependencyHelpers.test.ts │ ├── GapsReportBuilder.test.ts │ ├── HTMLBuilder.test.ts │ ├── MeasureReportBuilder.addSDE.test.ts │ ├── MeasureReportBuilder.test.ts │ ├── RetrievesFinder.test.ts │ ├── VSACHelper.test.ts │ ├── ValueSetHelper.test.ts │ ├── ValueSetResolver.test.ts │ ├── fixtures │ ├── bundle │ │ ├── measure-with-library-dependencies.json │ │ └── missing-vs │ │ │ ├── measure-missing-codeFilter-vs.json │ │ │ ├── measure-missing-contained-library-codeFilter-vs.json │ │ │ ├── measure-missing-contained-library-relatedArtifact-vs.json │ │ │ ├── measure-missing-library-relatedArtifact-vs-url-field.json │ │ │ └── measure-missing-library-relatedArtifact-vs.json │ ├── elm │ │ ├── Makefile │ │ ├── README.md │ │ ├── cql-translator.ts │ │ ├── declarations │ │ │ ├── PopRetrieveFunc.json │ │ │ ├── SimpleAliasFunctionRef.cql │ │ │ ├── SimpleAliasFunctionRef.json │ │ │ ├── SimpleAliasUsage.cql │ │ │ ├── SimpleAliasUsage.json │ │ │ ├── SortBy.cql │ │ │ └── SortBy.json │ │ ├── libraries │ │ │ ├── CMS13v2.json │ │ │ ├── CMS723v0.json │ │ │ ├── EXM130.json │ │ │ ├── ExampleMeasure.cql │ │ │ └── ExampleMeasure.json │ │ ├── operations │ │ │ ├── ComparisonWithLiteral.cql │ │ │ ├── ComparisonWithLiteral.json │ │ │ ├── ComparisonWithoutLiteral.cql │ │ │ ├── ComparisonWithoutLiteral.json │ │ │ ├── NotEqual.cql │ │ │ ├── NotEqual.json │ │ │ ├── NotEquivalent.cql │ │ │ ├── NotEquivalent.json │ │ │ ├── NotNull.cql │ │ │ └── NotNull.json │ │ ├── output │ │ │ └── .gitkeep │ │ └── queries │ │ │ ├── CaseStatement-kotlin.json │ │ │ ├── CaseStatement.cql │ │ │ ├── CaseStatement.json │ │ │ ├── ComplexQueries.cql │ │ │ ├── ComplexQueries.json │ │ │ ├── ExtraQueries.cql │ │ │ ├── ExtraQueries.json │ │ │ ├── MATGlobalCommonFunctions-5.0.000.json │ │ │ ├── MATGlobalCommonFunctions.cql │ │ │ ├── QICoreQuery.cql │ │ │ ├── QICoreQuery.json │ │ │ ├── SimpleQueries.cql │ │ │ ├── SimpleQueries.json │ │ │ ├── SimpleQueriesDependency.cql │ │ │ ├── SimpleQueriesDependency.json │ │ │ ├── ValueQueries.cql │ │ │ └── ValueQueries.json │ ├── gaps │ │ ├── example-detected-issue.json │ │ └── example-gaps-measurereport.json │ ├── html │ │ ├── simpleCoverageAnnotation.html │ │ ├── simpleCoverageAnnotation2.html │ │ └── simpleHighlightingAnnotation.html │ ├── measure │ │ ├── cv-measure.json │ │ ├── episode-measure-with-stratifiers.json │ │ ├── group-score-cv-measure.json │ │ ├── groups │ │ │ └── groupNumerAndDenomCriteria.json │ │ ├── measure-measure-obs.json │ │ ├── proportion-measure-with-stratifiers.json │ │ ├── ratio-measure.json │ │ ├── simple-composite-measure-weighted-scoring.json │ │ ├── simple-composite-measure.json │ │ └── simple-measure.json │ ├── patient │ │ ├── gaps-patient.json │ │ ├── patient-1.json │ │ └── patient-2.json │ └── valuesets │ │ ├── example-expanded-vs.json │ │ ├── example-vs-1.json │ │ └── example-vs-2.json │ ├── helpers │ ├── DetailedResultsHelpers.test.ts │ ├── ELMInfoCache.test.ts │ ├── MeasureBundleHelpers.test.ts │ ├── ReportBuilderFactory.test.ts │ ├── ValueComparisonHelpers.test.ts │ ├── queryFilterTestHelpers.ts │ └── testHelpers.ts │ ├── index.test.ts │ └── queryFilters │ ├── QueryFilterParser.test.ts │ ├── interpretComparator.test.ts │ ├── interpretEquivalent.test.ts │ ├── interpretExpression.test.ts │ ├── interpretFunctionRef.test.ts │ ├── interpretGreaterOrEqual.test.ts │ ├── interpretIn.test.ts │ ├── interpretIncludedIn.test.ts │ ├── interpretIsNull.test.ts │ └── interpretNot.test.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | connectathon 3 | coverage-percent-script 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general-issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.github/ISSUE_TEMPLATE/general-issue-template.md -------------------------------------------------------------------------------- /.github/gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.github/gitleaks.toml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/contributing.md -------------------------------------------------------------------------------- /data-requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/data-requirements/README.md -------------------------------------------------------------------------------- /data-requirements/compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/data-requirements/compare.sh -------------------------------------------------------------------------------- /data-requirements/elm-parser-dr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-requirements/fqm-e-dr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/data-requirements/fqm-e-dr.ts -------------------------------------------------------------------------------- /data-requirements/fqm-e-dr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-requirements/jan-2024-connectathon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-requirements/sept-2023-connectathon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-requirements/summary-compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/data-requirements/summary-compare.sh -------------------------------------------------------------------------------- /data-requirements/summary-compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/data-requirements/summary-compare.ts -------------------------------------------------------------------------------- /governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/governance.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/package.json -------------------------------------------------------------------------------- /regression/bundles/.gitkeep: -------------------------------------------------------------------------------- 1 | # keep this directory -------------------------------------------------------------------------------- /regression/default-bundles/.gitkeep: -------------------------------------------------------------------------------- 1 | # keep this directory -------------------------------------------------------------------------------- /regression/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regression/regression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/regression/regression.ts -------------------------------------------------------------------------------- /regression/run-regression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/regression/run-regression.sh -------------------------------------------------------------------------------- /src/calculation/AbstractMeasureReportBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/calculation/AbstractMeasureReportBuilder.ts -------------------------------------------------------------------------------- /src/calculation/Calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/calculation/Calculator.ts -------------------------------------------------------------------------------- /src/calculation/ClauseResultsBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/calculation/ClauseResultsBuilder.ts -------------------------------------------------------------------------------- /src/calculation/CompositeReportBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/calculation/CompositeReportBuilder.ts -------------------------------------------------------------------------------- /src/calculation/DetailedResultsBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/calculation/DetailedResultsBuilder.ts -------------------------------------------------------------------------------- /src/calculation/GapsReportBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/calculation/GapsReportBuilder.ts -------------------------------------------------------------------------------- /src/calculation/HTMLBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/calculation/HTMLBuilder.ts -------------------------------------------------------------------------------- /src/calculation/MeasureReportBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/calculation/MeasureReportBuilder.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/code-system/cts-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/code-system/cts-metadata.json -------------------------------------------------------------------------------- /src/compartment-definition/SearchParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/compartment-definition/SearchParameters.ts -------------------------------------------------------------------------------- /src/execution/Execution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/execution/Execution.ts -------------------------------------------------------------------------------- /src/execution/VSACHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/execution/VSACHelper.ts -------------------------------------------------------------------------------- /src/execution/ValueSetHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/execution/ValueSetHelper.ts -------------------------------------------------------------------------------- /src/execution/ValueSetResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/execution/ValueSetResolver.ts -------------------------------------------------------------------------------- /src/helpers/ClauseResultsHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/ClauseResultsHelpers.ts -------------------------------------------------------------------------------- /src/helpers/DataRequirementHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/DataRequirementHelpers.ts -------------------------------------------------------------------------------- /src/helpers/DebugHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/DebugHelpers.ts -------------------------------------------------------------------------------- /src/helpers/DetailedResultsHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/DetailedResultsHelpers.ts -------------------------------------------------------------------------------- /src/helpers/MeasureBundleHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/MeasureBundleHelpers.ts -------------------------------------------------------------------------------- /src/helpers/ReportBuilderFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/ReportBuilderFactory.ts -------------------------------------------------------------------------------- /src/helpers/ValueComparisonHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/ValueComparisonHelpers.ts -------------------------------------------------------------------------------- /src/helpers/elm/ELMDependencyHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/elm/ELMDependencyHelpers.ts -------------------------------------------------------------------------------- /src/helpers/elm/ELMHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/elm/ELMHelpers.ts -------------------------------------------------------------------------------- /src/helpers/elm/ELMInfoCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/elm/ELMInfoCache.ts -------------------------------------------------------------------------------- /src/helpers/elm/QueryFilterParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/elm/QueryFilterParser.ts -------------------------------------------------------------------------------- /src/helpers/elm/RetrievesHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/helpers/elm/RetrievesHelper.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/templates/clause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/templates/clause.ts -------------------------------------------------------------------------------- /src/templates/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/templates/main.ts -------------------------------------------------------------------------------- /src/types/CQLPatient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/CQLPatient.ts -------------------------------------------------------------------------------- /src/types/CQLTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/CQLTypes.ts -------------------------------------------------------------------------------- /src/types/Calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/Calculator.ts -------------------------------------------------------------------------------- /src/types/ELMTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/ELMTypes.ts -------------------------------------------------------------------------------- /src/types/Enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/Enums.ts -------------------------------------------------------------------------------- /src/types/QueryFilterTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/QueryFilterTypes.ts -------------------------------------------------------------------------------- /src/types/errors/CustomErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/errors/CustomErrors.ts -------------------------------------------------------------------------------- /src/types/errors/GracefulError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/errors/GracefulError.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /static/coverage-highlighting-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/static/coverage-highlighting-example.png -------------------------------------------------------------------------------- /static/logic-highlighting-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/static/logic-highlighting-example-2.png -------------------------------------------------------------------------------- /static/logic-highlighting-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/static/logic-highlighting-example.png -------------------------------------------------------------------------------- /static/population-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/static/population-diagram.png -------------------------------------------------------------------------------- /static/sde-sex-highlighting-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/static/sde-sex-highlighting-example.png -------------------------------------------------------------------------------- /test/integration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/Makefile -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/composite-all-or-nothing/composite-all-or-nothing-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-all-or-nothing/composite-all-or-nothing-bundle.json -------------------------------------------------------------------------------- /test/integration/composite-all-or-nothing/composite-all-or-nothing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-all-or-nothing/composite-all-or-nothing.test.ts -------------------------------------------------------------------------------- /test/integration/composite-all-or-nothing/cql/all-or-nothing-component-one.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-all-or-nothing/cql/all-or-nothing-component-one.cql -------------------------------------------------------------------------------- /test/integration/composite-all-or-nothing/cql/all-or-nothing-component-two.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-all-or-nothing/cql/all-or-nothing-component-two.cql -------------------------------------------------------------------------------- /test/integration/composite-all-or-nothing/patients/patient-comp1-denom-comp2-denom-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-all-or-nothing/patients/patient-comp1-denom-comp2-denom-bundle.json -------------------------------------------------------------------------------- /test/integration/composite-all-or-nothing/patients/patient-comp1-denom-comp2-numer-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-all-or-nothing/patients/patient-comp1-denom-comp2-numer-bundle.json -------------------------------------------------------------------------------- /test/integration/composite-all-or-nothing/patients/patient-comp1-numer-comp2-denom-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-all-or-nothing/patients/patient-comp1-numer-comp2-denom-bundle.json -------------------------------------------------------------------------------- /test/integration/composite-all-or-nothing/patients/patient-comp1-numer-comp2-numer-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-all-or-nothing/patients/patient-comp1-numer-comp2-numer-bundle.json -------------------------------------------------------------------------------- /test/integration/composite-weighted/composite-weighted-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-weighted/composite-weighted-bundle.json -------------------------------------------------------------------------------- /test/integration/composite-weighted/composite-weighted.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-weighted/composite-weighted.test.ts -------------------------------------------------------------------------------- /test/integration/composite-weighted/cql/weighted-component-one.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-weighted/cql/weighted-component-one.cql -------------------------------------------------------------------------------- /test/integration/composite-weighted/cql/weighted-component-two.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-weighted/cql/weighted-component-two.cql -------------------------------------------------------------------------------- /test/integration/composite-weighted/patients/patient-comp1-denom-comp2-numer-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-weighted/patients/patient-comp1-denom-comp2-numer-bundle.json -------------------------------------------------------------------------------- /test/integration/composite-weighted/patients/patient-comp1-numer-comp2-numer-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/composite-weighted/patients/patient-comp1-numer-comp2-numer-bundle.json -------------------------------------------------------------------------------- /test/integration/helpers/cql/FHIRHelpers-4.0.1.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/helpers/cql/FHIRHelpers-4.0.1.cql -------------------------------------------------------------------------------- /test/integration/helpers/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/helpers/testHelpers.ts -------------------------------------------------------------------------------- /test/integration/pretty-various-types/cql/pretty-various-types.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/pretty-various-types/cql/pretty-various-types.cql -------------------------------------------------------------------------------- /test/integration/pretty-various-types/patients/detailed-encounter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/pretty-various-types/patients/detailed-encounter.json -------------------------------------------------------------------------------- /test/integration/pretty-various-types/pretty-various-types-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/pretty-various-types/pretty-various-types-bundle.json -------------------------------------------------------------------------------- /test/integration/pretty-various-types/pretty-various-types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/pretty-various-types/pretty-various-types.test.ts -------------------------------------------------------------------------------- /test/integration/proportion-Encounter-tuple/cql/proportion-Encounter-tuple.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-Encounter-tuple/cql/proportion-Encounter-tuple.cql -------------------------------------------------------------------------------- /test/integration/proportion-Encounter-tuple/patients/patient-2Enc-1day-3day.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-Encounter-tuple/patients/patient-2Enc-1day-3day.json -------------------------------------------------------------------------------- /test/integration/proportion-Encounter-tuple/proportion-Encounter-tuple-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-Encounter-tuple/proportion-Encounter-tuple-bundle.json -------------------------------------------------------------------------------- /test/integration/proportion-Encounter-tuple/proportion-Encounter-tuple.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-Encounter-tuple/proportion-Encounter-tuple.test.ts -------------------------------------------------------------------------------- /test/integration/proportion-boolean/cql/proportion-boolean.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-boolean/cql/proportion-boolean.cql -------------------------------------------------------------------------------- /test/integration/proportion-boolean/patients/patient-denom-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-boolean/patients/patient-denom-bundle.json -------------------------------------------------------------------------------- /test/integration/proportion-boolean/patients/patient-ipp-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-boolean/patients/patient-ipp-bundle.json -------------------------------------------------------------------------------- /test/integration/proportion-boolean/patients/patient-numer-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-boolean/patients/patient-numer-bundle.json -------------------------------------------------------------------------------- /test/integration/proportion-boolean/proportion-boolean-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-boolean/proportion-boolean-bundle.json -------------------------------------------------------------------------------- /test/integration/proportion-boolean/proportion-boolean.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/proportion-boolean/proportion-boolean.test.ts -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/cql/ratio-Encounter-reuseObservationFunction.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/cql/ratio-Encounter-reuseObservationFunction.cql -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-1in-all-1daylong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-1in-all-1daylong.json -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-1in-denom-1in-numer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-1in-denom-1in-numer.json -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-1in-denom-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-1in-denom-only.json -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-1in-numer-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-1in-numer-only.json -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-2in-denom-1in-numer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-2enc-2in-denom-1in-numer.json -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-3enc-1in-all-2in-denom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/patients/patient-3enc-1in-all-2in-denom.json -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/ratio-Encounter-reuseObservationFunction-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/ratio-Encounter-reuseObservationFunction-bundle.json -------------------------------------------------------------------------------- /test/integration/ratio-Encounter-reuseObservationFunction/ratio-Encounter-reuseObservationFunction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/ratio-Encounter-reuseObservationFunction/ratio-Encounter-reuseObservationFunction.test.ts -------------------------------------------------------------------------------- /test/integration/valuesets/exampleValueSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/valuesets/exampleValueSet.json -------------------------------------------------------------------------------- /test/integration/valuesets/exampleValueSet2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/valuesets/exampleValueSet2.json -------------------------------------------------------------------------------- /test/integration/valuesets/exampleValueSet3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/integration/valuesets/exampleValueSet3.json -------------------------------------------------------------------------------- /test/unit/ClauseResultsBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/ClauseResultsBuilder.test.ts -------------------------------------------------------------------------------- /test/unit/ClauseResultsHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/ClauseResultsHelper.test.ts -------------------------------------------------------------------------------- /test/unit/CompositeReportBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/CompositeReportBuilder.test.ts -------------------------------------------------------------------------------- /test/unit/DataRequirementHelpers.getFlattenedRelatedArtifacts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/DataRequirementHelpers.getFlattenedRelatedArtifacts.test.ts -------------------------------------------------------------------------------- /test/unit/DataRequirementHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/DataRequirementHelpers.test.ts -------------------------------------------------------------------------------- /test/unit/DetailedResultsBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/DetailedResultsBuilder.test.ts -------------------------------------------------------------------------------- /test/unit/ELMDependencyHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/ELMDependencyHelpers.test.ts -------------------------------------------------------------------------------- /test/unit/GapsReportBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/GapsReportBuilder.test.ts -------------------------------------------------------------------------------- /test/unit/HTMLBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/HTMLBuilder.test.ts -------------------------------------------------------------------------------- /test/unit/MeasureReportBuilder.addSDE.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/MeasureReportBuilder.addSDE.test.ts -------------------------------------------------------------------------------- /test/unit/MeasureReportBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/MeasureReportBuilder.test.ts -------------------------------------------------------------------------------- /test/unit/RetrievesFinder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/RetrievesFinder.test.ts -------------------------------------------------------------------------------- /test/unit/VSACHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/VSACHelper.test.ts -------------------------------------------------------------------------------- /test/unit/ValueSetHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/ValueSetHelper.test.ts -------------------------------------------------------------------------------- /test/unit/ValueSetResolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/ValueSetResolver.test.ts -------------------------------------------------------------------------------- /test/unit/fixtures/bundle/measure-with-library-dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/bundle/measure-with-library-dependencies.json -------------------------------------------------------------------------------- /test/unit/fixtures/bundle/missing-vs/measure-missing-codeFilter-vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/bundle/missing-vs/measure-missing-codeFilter-vs.json -------------------------------------------------------------------------------- /test/unit/fixtures/bundle/missing-vs/measure-missing-contained-library-codeFilter-vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/bundle/missing-vs/measure-missing-contained-library-codeFilter-vs.json -------------------------------------------------------------------------------- /test/unit/fixtures/bundle/missing-vs/measure-missing-contained-library-relatedArtifact-vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/bundle/missing-vs/measure-missing-contained-library-relatedArtifact-vs.json -------------------------------------------------------------------------------- /test/unit/fixtures/bundle/missing-vs/measure-missing-library-relatedArtifact-vs-url-field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/bundle/missing-vs/measure-missing-library-relatedArtifact-vs-url-field.json -------------------------------------------------------------------------------- /test/unit/fixtures/bundle/missing-vs/measure-missing-library-relatedArtifact-vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/bundle/missing-vs/measure-missing-library-relatedArtifact-vs.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/Makefile -------------------------------------------------------------------------------- /test/unit/fixtures/elm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/README.md -------------------------------------------------------------------------------- /test/unit/fixtures/elm/cql-translator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/cql-translator.ts -------------------------------------------------------------------------------- /test/unit/fixtures/elm/declarations/PopRetrieveFunc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/declarations/PopRetrieveFunc.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/declarations/SimpleAliasFunctionRef.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/declarations/SimpleAliasFunctionRef.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/declarations/SimpleAliasFunctionRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/declarations/SimpleAliasFunctionRef.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/declarations/SimpleAliasUsage.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/declarations/SimpleAliasUsage.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/declarations/SimpleAliasUsage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/declarations/SimpleAliasUsage.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/declarations/SortBy.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/declarations/SortBy.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/declarations/SortBy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/declarations/SortBy.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/libraries/CMS13v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/libraries/CMS13v2.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/libraries/CMS723v0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/libraries/CMS723v0.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/libraries/EXM130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/libraries/EXM130.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/libraries/ExampleMeasure.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/libraries/ExampleMeasure.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/libraries/ExampleMeasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/libraries/ExampleMeasure.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/ComparisonWithLiteral.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/ComparisonWithLiteral.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/ComparisonWithLiteral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/ComparisonWithLiteral.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/ComparisonWithoutLiteral.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/ComparisonWithoutLiteral.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/ComparisonWithoutLiteral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/ComparisonWithoutLiteral.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/NotEqual.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/NotEqual.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/NotEqual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/NotEqual.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/NotEquivalent.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/NotEquivalent.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/NotEquivalent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/NotEquivalent.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/NotNull.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/NotNull.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/operations/NotNull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/operations/NotNull.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/CaseStatement-kotlin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/CaseStatement-kotlin.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/CaseStatement.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/CaseStatement.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/CaseStatement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/CaseStatement.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/ComplexQueries.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/ComplexQueries.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/ComplexQueries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/ComplexQueries.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/ExtraQueries.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/ExtraQueries.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/ExtraQueries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/ExtraQueries.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/MATGlobalCommonFunctions-5.0.000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/MATGlobalCommonFunctions-5.0.000.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/MATGlobalCommonFunctions.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/MATGlobalCommonFunctions.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/QICoreQuery.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/QICoreQuery.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/QICoreQuery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/QICoreQuery.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/SimpleQueries.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/SimpleQueries.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/SimpleQueries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/SimpleQueries.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/SimpleQueriesDependency.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/SimpleQueriesDependency.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/SimpleQueriesDependency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/SimpleQueriesDependency.json -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/ValueQueries.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/ValueQueries.cql -------------------------------------------------------------------------------- /test/unit/fixtures/elm/queries/ValueQueries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/elm/queries/ValueQueries.json -------------------------------------------------------------------------------- /test/unit/fixtures/gaps/example-detected-issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/gaps/example-detected-issue.json -------------------------------------------------------------------------------- /test/unit/fixtures/gaps/example-gaps-measurereport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/gaps/example-gaps-measurereport.json -------------------------------------------------------------------------------- /test/unit/fixtures/html/simpleCoverageAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/html/simpleCoverageAnnotation.html -------------------------------------------------------------------------------- /test/unit/fixtures/html/simpleCoverageAnnotation2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/html/simpleCoverageAnnotation2.html -------------------------------------------------------------------------------- /test/unit/fixtures/html/simpleHighlightingAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/html/simpleHighlightingAnnotation.html -------------------------------------------------------------------------------- /test/unit/fixtures/measure/cv-measure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/cv-measure.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/episode-measure-with-stratifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/episode-measure-with-stratifiers.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/group-score-cv-measure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/group-score-cv-measure.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/groups/groupNumerAndDenomCriteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/groups/groupNumerAndDenomCriteria.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/measure-measure-obs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/measure-measure-obs.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/proportion-measure-with-stratifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/proportion-measure-with-stratifiers.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/ratio-measure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/ratio-measure.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/simple-composite-measure-weighted-scoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/simple-composite-measure-weighted-scoring.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/simple-composite-measure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/simple-composite-measure.json -------------------------------------------------------------------------------- /test/unit/fixtures/measure/simple-measure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/measure/simple-measure.json -------------------------------------------------------------------------------- /test/unit/fixtures/patient/gaps-patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/patient/gaps-patient.json -------------------------------------------------------------------------------- /test/unit/fixtures/patient/patient-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/patient/patient-1.json -------------------------------------------------------------------------------- /test/unit/fixtures/patient/patient-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/patient/patient-2.json -------------------------------------------------------------------------------- /test/unit/fixtures/valuesets/example-expanded-vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/valuesets/example-expanded-vs.json -------------------------------------------------------------------------------- /test/unit/fixtures/valuesets/example-vs-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/valuesets/example-vs-1.json -------------------------------------------------------------------------------- /test/unit/fixtures/valuesets/example-vs-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/fixtures/valuesets/example-vs-2.json -------------------------------------------------------------------------------- /test/unit/helpers/DetailedResultsHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/helpers/DetailedResultsHelpers.test.ts -------------------------------------------------------------------------------- /test/unit/helpers/ELMInfoCache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/helpers/ELMInfoCache.test.ts -------------------------------------------------------------------------------- /test/unit/helpers/MeasureBundleHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/helpers/MeasureBundleHelpers.test.ts -------------------------------------------------------------------------------- /test/unit/helpers/ReportBuilderFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/helpers/ReportBuilderFactory.test.ts -------------------------------------------------------------------------------- /test/unit/helpers/ValueComparisonHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/helpers/ValueComparisonHelpers.test.ts -------------------------------------------------------------------------------- /test/unit/helpers/queryFilterTestHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/helpers/queryFilterTestHelpers.ts -------------------------------------------------------------------------------- /test/unit/helpers/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/helpers/testHelpers.ts -------------------------------------------------------------------------------- /test/unit/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/index.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/QueryFilterParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/QueryFilterParser.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretComparator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretComparator.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretEquivalent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretEquivalent.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretExpression.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretExpression.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretFunctionRef.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretFunctionRef.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretGreaterOrEqual.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretGreaterOrEqual.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretIn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretIn.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretIncludedIn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretIncludedIn.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretIsNull.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretIsNull.test.ts -------------------------------------------------------------------------------- /test/unit/queryFilters/interpretNot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/test/unit/queryFilters/interpretNot.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecttacoma/fqm-execution/HEAD/tsconfig.json --------------------------------------------------------------------------------