Skip to content

Observational Medical Outcomes Partnership - Common Data Model

License

Notifications You must be signed in to change notification settings

nathansutton/omop

Repository files navigation

OMOP - Common Data Model

YourActionName Actions Status

This repository modifies the common data model developed by the Observational Health Data Sciences and Informatics program.

tl;dr

The CDM is a great tool, but it can be difficult to set up if you're not a database administrator. This repository makes creating a local database on your laptop as simple as ...

docker-compose up

flyway

We migrated the PostgreSQL version of the common data model to flyway. This structure make it simple to create databases reliably from source control. We chose to represent each table as a versioned migration with a four digit numeric sequence. This means that each script will run once upon initialization (docker-compose up) If you were to run the migrate command manually, it will skip the code that it has already run.

persistent data

/volumes/data will hold the data for your PostgreSQL database. It is persisted here so you do not lose your work when you shut down the container.

database

You will have a local PostgreSQL running inside a container. The database is called 'cdm' and the username / password for your local instance is just 'admin'.

usage

Drop into database container's shell.

docker-compose run postgres bash

From the database container's shell, interact with the database with the psql client.

psql --host=postgres --username=admin --dbname=cdm

Run all flyway migrations in your database

docker-compose run flyway migrate -configFiles=/flyway/conf/flyway.conf -locations=filesystem:/flyway/sql/public -schemas=public

Drop all objects in your database

docker-compose run flyway clean -configFiles=/flyway/conf/flyway.conf -locations=filesystem:/flyway/sql/public -schemas=public

About

Observational Medical Outcomes Partnership - Common Data Model

Resources

License

Stars

Watchers

Forks

Packages

No packages published