Add source adapter layer for IBM MarketScan, IBM LCED, and CPRD GOLD#235
Open
xushenbo wants to merge 2 commits into
Open
Add source adapter layer for IBM MarketScan, IBM LCED, and CPRD GOLD#235xushenbo wants to merge 2 commits into
xushenbo wants to merge 2 commits into
Conversation
- Three ETL adapters (marketscan, lced, cprd) producing canonical tables
- Vocabulary loaders: NDC, RxNorm, LOINC, Read code, prodcode, ICD GEM/CCS stubs
- to_ehrdata() bridge converting canonical tables to EHRData
- 327 tests across all modules
- Reference docs: docs/sources/{marketscan,lced,cprd}.md
- Tutorial notebooks: CPRD overview, LOINC mapping, ICD mapping, LCED cohort
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
for more information, see https://pre-commit.ci
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR migrates three EHR ETL pipelines into a new
ehrdata.io.sourcePython layer, providing a unified adapter interface for IBM MarketScan, IBM LCED, and CPRD GOLD.New modules
ehrdata.io.source.adapters.marketscan— US commercial claims (diagnosis, therapy, procedure, patinfo, insurance, provider)ehrdata.io.source.adapters.lced— IBM LCED linked claims-EMR data (diagnosis, therapy, lab test, habit, patinfo)ehrdata.io.source.adapters.cprd— CPRD GOLD UK primary-care data (diagnosis, therapy, lab test, patinfo); supports Read code and prodcode vocabulary translationehrdata.io.source.vocab— vocabulary loaders for NDC→ingredient, RxNorm→ingredient, LOINC, Read code (medcode→readcode), and prodcode mappingsehrdata.io.source.to_ehrdata— bridge that converts any combination of canonical source tables into anEHRDataobjectDocumentation
docs/sources/docs/tutorials/: CPRD overview and EDA, LOINC mapping, ICD version inference and mapping, LCED T2D cohort studyTests
327 new tests covering all adapters, vocab loaders, normalisation utilities, and the
to_ehrdatabridge.Test plan
pytest tests/io/test_source_*.py— 327 tests, all passinghatch run docs:build— docs build cleanly