Skip to content

Iteration 7 Architecture

Jeremy Ho edited this page Sep 20, 2013 · 3 revisions

This wiki page describes the architecture for Iteration 7 of the SCOOP project.

Context

The architecture context is basically the same as the previous iteration. However, we will also be starting to set up and plan for deployment.

This iteration is being deployed to a laboratory environment (non production) at UVic.

There are two practices being simulated in this iteration (i.e. two endpoints) via discrete virtual machines.

Logical View

There are a number of architectural changes planned for this iteration of SCOOP.

1. We are continuing to enhance and refactor OSCAR to export the patient summary document, either for a single individual or by batch for all individuals with a record in the EMR

2. The middleware (relay-service.rb) A simple ruby webservice will transfer individual summary documents between the EMR and the hQuery Gateway. It will not perform any aggregation or transformation.

3. hQuery Hub will be investigated as to how we can extend the reporting functionality of the resultant queries. This will allow for future iterations to have a more meaningful result for the researcher by providing a better view of the information.

Constraints

Privacy Individual information never leaves the practice. Early feedback from discussions with the faculty physicians UBC highlighted their stewardship of patient information as a serious matter. There’s a genuine concern that anonymous data collected may be used for unintended research purposes in the future. Several are concerned by the risks of data aggregation, even when the data is de-identified.

Open Source As SCOOP development is sponsored with public funds it will be released as open source for anyone to use. In addition, SCOOP will only rely on free, open source components so that its use is accessible to any individual/group.

OSCAR In addition to being open source, OSCAR is the EMR used by many UBC clinical faculty and physicians. A few of these faculty members will be the initial SCOOP users. For this reason, OSCAR will be the first supported EMR.

Design View

Software design of the export feature in OSCAR

We will attempt to stay true to the MVC design. Velocity based templating requires both a template and a data model. We have the PatientExport object draw on all the pre-existing DAOs and models and have it group up the relevant fields for easy velocity access. Most of the heavy code work will be found in e2etemplate.vm, and DemographicExportAction4.java acts as the Event Handler and file management for the export function.

Software design for new hQuery enhancements

Initial security hardening via HTTPS will be prototyped and tested. This security hardening will be further expanded and enhanced as required.

Query Design

Since hQuery follows the map-reduce paradigm for gathering and returning results, we will also be using a mapping and reducing design. It is expected that all previous queries will still be able to function correctly.

Map

We expect all previous queries to function correctly. As the query sets will draw from Problem List, Labs, Demographics, Measurements, and Medications, there should not be any unsupported query types this iteration.

Reduce

Since our reduction function works for a wide range of inputs, it will remain the same as previous iterations.

function reduce(key, values) {
    var result = 0;

    while (values.hasNext()) {
        result += values.next();
    }

    return result;
}

Data View

Introduction to E2E E2E, or EMR to EMR, is a CDA specification being developed by BC's PITO organization. Its main purpose is to create a standard in which EMR data can be transmitted to other Canadian EMRs in a standardized way.

Overview of E2E sections The E2E sections can be found in the EMR-2-EMR (E2E) page of the wiki.

Scope of content for Iteration 7 In order to sufficiently return value back to the OSCAR community, we need to implement a compliant E2E conversion standard exporter. As such, our scope includes all sections and content that is defined as required by the E2E specification.

Technology Selection

OSCAR An Open Source EMR system used by many private physicians. This is way that individual information is captured - and the user interface for the physician practioner end user.

relay-service.rb This is an open source ruby script developed by the SCOOP project. Its main purpose is to allow E2E documents stored within a specified directory to be passed into the query gateway by restful web service calls.

hQuery Gateway The query gateway is a web based application that provides the back end for executing queries. The query gateway which exposes a query API, accepts queries, runs those queries against the patient data, and returns the results of the query back to the query composer.

hQuery Composer The query composer is a web based application that provides the front end for creating, managing, and executing queries. Those queries are executed against the query gateway which exposes a query API, accepts queries, runs those queries against the patient data, and returns the results of the query back to the query composer.

Scoop Endpoint refers to all the non-EMR SCOOP software components that will reside at a practice in the future. This includes the hQuery Gateway and relay-service.rb.

SCOOP Hub This is the application that the researcher uses to ask a "question" of the Research Network. This includes features for query management, policy enforcement, privacy management, and security. Currently, hQuery composer is the only software system in the hub - but more design and enhancements are needed.

Current Iteration: 13

General Topics

Resources


Previous Iteration: 12

Previous Iteration: 11

Previous Iteration: 10

Previous Iteration: 9

Previous Iteration: 8

Previous Iteration: 7

Previous Iteration: 6

Previous Iteration: 5

Previous Iteration: 4

Previous Iteration: 3

Previous Iteration: 2

Previous Iteration: 1

Previous Iteration: 0

Clone this wiki locally