Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Project ChampionPaul Biondich
ODHSI ContactsJon Duke, Patrick Ryan
Hackers

Suranga Kasthurirathne

Sri Maurya Kummamuru

Source codehttps://github.com/maurya/openmrs-module-ohdsi

Abstract

Objectives

Module Design

Our initial proof of concept involved exporting the OpenMRS database into an plsql database, and then performing OHDSI compliant changes to this database. As of 10th July 2015, we have decided that the best approach to support integration with OHDSI would be via an OpenMRS module that can provide data that could be directly consumed by an ODSHI CDM5 compliant database.

We made this decision in order to limit the number of steps that were required from users who wanted to use our work - the proof of concept was complicated and involved multiple steps, and required that we perform mysql to plsql using other third party steps. The new process irradiates the need for any additional steps. Instead, the OpenMRS OHDSI module assumes that the consumer of OHDSI data has already setup a CDM compliant database. The module makes JDBC connections to extract OpenMRS data from the mysql database, converts them into OHDSI compliant format, and exports a set of insert into statements that can be fed directly into a OHDSI CDM5 database.

Development work

 OHDSI uses different tables in its schema to populate diferent aggregate applications. Therefore, we do not need to populate the entire OHDSI database in order to leverage certain OHDSI applications. A flowchart depicting what tables must be populated in order to use which OHDSI application is as follows,

...

Mapping between the OpenMRS database and the OHDSI CDM schema were completed by experts during a face to face meeting. The agreed to mappings can be seen in OpenMRS ETL.docx.

OpenMRS OHDSI module interface design

At this point, we plan to support two workflows for exporting data to OHDSI CDM schema. 

...

In this approach, we assume that the user has access to the OHDSI database. The user is asked to enter access details for the OpenMRS OHDSI module to connect to the OHDSI database. Once a connection is established, data will be posted directly to the ODHSI database in real time.

 

Resources