A package for loading OHDSI CDM CSV files into a relational database.
Project description
OHDSI CDM Data Loader
This repository provides scripts to load Common Data Model (CDM) data from OHDSI's standardized vocabularies (version 5.4 or 5.3) into CDM tables in a relational database. It is designed for the OHDSI community and those working with OHDSI's Common Data Model for large-scale observational research.
Although this project has been primarily tested with PostgreSQL, it may also work with other supported databases by OHDSI (still testing).
Requirements
Python Requirements
- Python 3.x
- PostgreSQL database (for testing, but adaptable for other OHDSI-supported databases)
- still checking for others.
- Required Python libraries (listed in
requirements.txt)
R Requirements
Some of the processes and dependencies in the OHDSI environment may require specific R packages to interact with the OHDSI CDM and tools. Ensure the following R packages are installed:
# Install OHDSI-specific R packages
install.packages("devtools")
install.packages("DatabaseConnector")
install.packages("SqlRender")
devtools::install_github("OHDSI/CommonDataModel") # For working with CDM-related functionality
# some other packages (not OHDSI specific)
install.packages("lubridate")
install.packages("dplyr")
install.packages("readr")
Install Python Dependencies
To install the Python dependencies listed in requirements.txt, run the following command:
pip install -r requirements.txt
Files
1. db_connector.py
This script contains the DatabaseHandler class, which manages connections to a PostgreSQL database and can be adapted to other OHDSI-supported databases.
Key Features:
- Establishes a connection to the CDM database (primarily tested with PostgreSQL).
- Executes SQL commands and handles transactions for the CDM tables.
Example (Python):
from db_connector import DatabaseHandler
database_connector = DatabaseHandler(
db_type="postgresql", # Database type (e.g., postgresql)
host="localhost", # Database host
user="postgres", # Database user
password="your_password", # Database password
database="ohdsi_cdm", # OHDSI CDM database
driver_path="path_to_driver" # path to driver for selected database
)
db_conn = database_connector.connect_to_db()
if db_conn:
print("Connected to the database successfully!")
else:
print("Failed to connect to the database.")
2. load_csv.py
This script loads the OHDSI CDM vocabularies (version 5.3 or 5.4) from CSV files into the CDM tables in the database.
Key Features:
- Loads all CSV files for the standardized vocabularies from the specified directory into the corresponding create database. For clarity the database can be created using the executeSQL function from the commondatamodel package. Not minding, we also incorporated it here.
from db_connector import DatabaseHandler
# Initialize the database connection
database_connector = DatabaseHandler(
db_type="postgresql",
host="localhost",
user="postgres",
password="your_password",
database="ohdsi_cdm",
driver_path="path_to_driver"
)
# Connect to the CDM database
db_conn = database_connector.connect_to_db()
# generate the table in the database
database_connector.execute_ddl(cdm_version = "value", cdm_database_schema = "schema name")
- Uses the active database connection and CDM-compliant table structure.
Example (Python):
from load_csv import CSVLoader
csv_loader = CSVLoader(
db_connection=db_conn, # Active database connection
database_handler=database_connector, # DatabaseHandler instance
table_name="your_cdm_table_name" # CDM table name
)
csv_loader.load_all_csvs("path_to_your_csv_directory")
3. main.py
This is the main entry point of the application. It integrates the database connection and CSV loading functionality specifically for OHDSI's CDM.
Usage:
The script connects to the CDM database and loads all relevant CDM data from OHDSI’s standardized vocabularies (versions 5.3 or 5.4).
python main.py
Workflow in Main Script:
from db_connector import DatabaseHandler
from load_csv import CSVLoader
# Initialize the database connection
database_connector = DatabaseHandler(
db_type="postgresql",
host="localhost",
user="postgres",
password="your_password",
database="ohdsi_cdm",
driver_path="path_to_driver"
)
# Connect to the CDM database
db_conn = database_connector.connect_to_db()
# Load CSVs if the connection is successful
if db_conn:
csv_loader = CSVLoader(db_conn, database_connector, "cdm_table_name")
csv_loader.load_all_csvs("path_to_your_csv_directory")
else:
print("Database connection failed.")
Environment Variables
To ensure security and flexibility, it is recommended to store database credentials as environment variables rather than hardcoding them into the script.
Here’s an example of how to set environment variables:
export DB_HOST='your_host'
export DB_NAME='ohdsi_cdm'
export DB_USER='your_username'
export DB_PASSWORD='your_password'
Update the script to read these variables using os.getenv:
import os
from db_connector import DatabaseHandler
database_connector = DatabaseHandler(
db_type="postgresql",
host=os.getenv('DB_HOST'),
user=os.getenv('DB_USER'),
password=os.getenv('DB_PASSWORD'),
database=os.getenv('DB_NAME'),
driver_path="path_to_driver"
)
Credits
This project is designed to work with OHDSI's Common Data Model (CDM) and standardized vocabularies. The tools and processes used here are compatible with OHDSI standards, and the database loader has been tested specifically for PostgreSQL, though it should work with other databases supported by OHDSI.
OHDSI (Observational Health Data Sciences and Informatics) is a multi-stakeholder, interdisciplinary collaborative that aims to bring out the value of observational health data through large-scale analytics. Learn more about OHDSI and the CDM on the official OHDSI website.
This project was also supported by eHealth Hub Limerick, contributing to the development and deployment of health data tools for innovative healthcare solutions. Learn more about eHealth Hub Limerick at eHealth Hub Limerick's official website.
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cdm_csv_loader-0.1.0.tar.gz.
File metadata
- Download URL: cdm_csv_loader-0.1.0.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8522636be3c3586f9fcc892dd297c30161361a460d4bb791b15077ebf8d748e1
|
|
| MD5 |
b91603d913b6513c92c6cb51df7dc327
|
|
| BLAKE2b-256 |
fe85f6453fbc048fadc748fce248d40819e8e475f399a99eeea3873ec5baa7b6
|
File details
Details for the file cdm_csv_loader-0.1.0-py3-none-any.whl.
File metadata
- Download URL: cdm_csv_loader-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ede935bda663ae85508517aa1b189959b7ff3d05c8494052a4a87f282d172dae
|
|
| MD5 |
c19a3207237e1962dd4258e317cdc8f5
|
|
| BLAKE2b-256 |
12c31e196549f53b5d6aaec0dda50218d81a73d9d727d43b7aac35146ff5a68b
|