a rule-based clinical concept extraction tool to capture microorganisms and estimate infection status on semi-structured microbiology culture reports.
Project description
RBMCE (Rule-Based Microbiology Concept Extractor):
This code was developed to provide an open-source python package to extract clinical concepts from free-text semi-structured microbiology reports. The two primary outputs for this package are (1) an binary estimation of patient bacterial infection status and (2) a list of all clinically relevant microorganisms found in the report. These outputs were validated on two independent datasets and achieved f-1 scores over 0.95 on both outputs when compared to expert review. Full details on background, algorithm, and validation results can be seen at our paper here: (currently being written, will update once submitted to archive).
🏠 Homepage
✨ package
Requirements
* python >=3.6.8
* pandas >=0.25.0
Install
pip install rbmce
Usage
Recommended datastructure:
the rbcme.run() function expects a pandas dataframe with the following elements (associated column names can be specified as kwargs):
- parsed_note:
- microbiology report txt in either a raw or (**perferable) chopped up into components (eg gram stain/growth report/ab susceptability)
- culture_id:
- a primary key tied to a given sample/specimen + microbiological exam order.
- Often a microbiology order can be tied to numerous components (eg gram stain/growth report/ ab susceptability). additionally these can be appended to same report or added as a new report tied to same sample + order. all of these tied to a sample+order should share same culture_id
- visit_id:
- primary key for patient's visit/encounter
- can be 1-many:1 to culture_id or 1:1 (in which case can specify as culture_id)
- in some datasets a patient may have multiple cultures performed in a visit/encounter.
Inline:
import rbmce
import pandas as pd
d={'parsed_note': 'No Salmonella, Shigella, Campylobacter, Aeromonas or Plesiomonas isolated.', 'culture_id': 1, 'visit_id': 1}
df=pd.DataFrame(data=d, index=[1])
rbmce.run(df)
Command Line:
see rbcme_run_example.py for example of an executable python file to import, format, process w/ rbmce, and save outputs (annotated dataframe, markdown_summary file)
Run tests
Inline
from rbmce import debug
test_str='No Salmonella, Shigella, Campylobacter, Aeromonas or Plesiomonas isolated.'
debug.rbmce_str_in(test_str)
Command Line:
python -m rbmce.debug 'No Salmonella, Shigella, Campylobacter, Aeromonas or Plesiomonas isolated.'
Author
👤 Garrett Eickelberg
🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide
Show your support
Give a ⭐️ if this project helped you!
Credits
📝 License
This project is MIT licensed.
This README was created with the markdown-readme-generator
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 rbmce-0.0.2.tar.gz.
File metadata
- Download URL: rbmce-0.0.2.tar.gz
- Upload date:
- Size: 40.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf6b6bc76eec814298209ea25a762950ba82e74340fc87b7967abb720b3acf52
|
|
| MD5 |
02563694f2bd48bbabb2da1be61c59b5
|
|
| BLAKE2b-256 |
798f789c4e704f33240007259ff4187476946520bbfcb6ae2656045f27f2b7a6
|
File details
Details for the file rbmce-0.0.2-py3-none-any.whl.
File metadata
- Download URL: rbmce-0.0.2-py3-none-any.whl
- Upload date:
- Size: 44.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae37186511a4b2139344c99792bb0ddeb7cf0c60914236d6bb8c8af810d03ebd
|
|
| MD5 |
606aaf21944ff62350a9bd6a6e5f158d
|
|
| BLAKE2b-256 |
16f1e226fb05b9ce37ea807a9842e287e75334bcc2bb13c26c95a42b16910a5e
|