VICC normalization routines for diseases
Project description
Disease Normalizer
Services and guidelines for normalizing disease terms
Installation
The Disease Normalizer is available via PyPI:
pip install disease-normalizer[etl,pg]
The [etl,pg] argument tells pip to install packages to fulfill the dependencies of the gene.etl package and the PostgreSQL data storage implementation alongside the default DynamoDB data storage implementation.
External requirements
The Disease Normalizer can retrieve most required data itself, using the wags-tails library. The exception is disease terms from OMIM, for which a source file must be manually acquired and placed in the omim
folder within the data directory (by default, ~/.local/share/wags_tails/omim/
). In order to access OMIM data, users must submit a request here. Once approved, the relevant OMIM file (mimTitles.txt
) should be renamed according to the convention omim_YYYYMMDD.tsv
, where YYYYMMDD
indicates the date that the file was generated, and placed in the appropriate location.
Database Initialization
The Disease Normalizer supports two data storage options:
- DynamoDB, a NoSQL service provided by AWS. This is our preferred storage solution. In addition to cloud deployment, Amazon also provides a tool for local service, which can be installed here. Once downloaded, you can start service by running
java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb
in a terminal (add a-port <VALUE>
option to use a different port). By default, data will be added to a table nameddisease_normalizer
, but an alternate table name can by given under the environment variableDISEASE_DYNAMO_TABLE
. - PostgreSQL, a well-known relational database technology. Once starting the Postgres server process, ensure that a database is created (we typically name ours
disease_normalizer
).
By default, the Disease Normalizer expects to find a DynamoDB instance listening at http://localhost:8000
. Alternative locations can be specified in two ways:
The first way is to set the --db_url
command-line option to the URL endpoint.
disease_norm_update --update_all --db_url="http://localhost:8001"
The second way is to set the DISEASE_NORM_DB_URL
environment variable to the URL endpoint.
export DISEASE_NORM_DB_URL="http://localhost:8001"
To use a PostgreSQL instance instead of DynamoDB, provide a PostgreSQL connection URL instead, e.g.
export DISEASE_NORM_DB_URL="postgresql://postgres@localhost:5432/disease_normalizer"
Adding and refreshing data
Use the disease_norm_update
command in a shell to update the database.
If you encounter an error message like the following, refer to the installation instructions above:
"Encountered ModuleNotFoundError attempting to import Mondo. Are ETL dependencies installed?"
Update source(s)
The Disease Normalizer currently uses data from the following sources:
- The National Cancer Institute Thesaurus (NCIt)
- The Mondo Disease Ontology
- The Online Mendelian Inheritance in Man (OMIM)
- OncoTree
- The Disease Ontology
As described above, all source data other than OMIM can be acquired automatically.
To update one source, simply set --sources
to the source you wish to update. The normalizer will check to see if local source data is up-to-date, acquire the most recent data if not, and use it to populate the database.
For example, run the following to acquire the latest NCIt data if necessary, and update the NCIt disease records in the normalizer database:
disease_norm_update --sources="ncit"
To update multiple sources, you can use the --sources
option with the source names separated by spaces.
Update all sources
To update all sources, use the --update_all
flag:
disease_norm_update --update_all
Create Merged Concept Groups
The normalize
endpoint relies on merged concept groups.
To create merged concept groups, use the --update_merged
flag with the --update_all
flag.
python3 -m disease.cli --update_all --update_merged
Starting the disease normalization service
Once the Disease Normalizer database has been loaded, from the project root, run the following:
uvicorn disease.main:app --reload
Next, view the OpenAPI docs on your local machine:
Developer instructions
Following are sections include instructions specifically for developers.
Installation
For a development install, we recommend using Pipenv. See the pipenv docs for direction on installing pipenv in your compute environment.
To get started, clone the repo and initialize the environment:
git clone https://github.com/cancervariants/disease-normalization
cd disease-normalization
pipenv shell
pipenv update
pipenv install --dev
Alternatively, install the pg
, etl
, dev
, and test dependency groups in a virtual environment:
git clone https://github.com/cancervariants/gene-normalization
cd gene-normalization
python3 -m virtualenv venv
source venv/bin/activate
pip install -e ".[pg,etl,dev,test]"
Init coding style tests
Code style is managed by Ruff and checked prior to commit.
This performs checks for:
- Code style
- File endings
- Added large files
- AWS credentials
- Private keys
Before first commit run:
pre-commit install
Running unit tests
Tests are provided via pytest.
pytest
By default, tests will employ an existing DynamoDB database. For test environments where this is unavailable (e.g. in CI), the DISEASE_TEST
environment variable can be set to initialize a local DynamoDB instance with miniature versions of input data files before tests are executed.
export DISEASE_TEST=true
pytest
Sometimes, sources will update their data, and our test fixtures and data will become incorrect. The tests/scripts/
subdirectory includes scripts to rebuild data files, although most fixtures will need to be updated manually.
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
File details
Details for the file disease-normalizer-0.4.0.dev2.tar.gz
.
File metadata
- Download URL: disease-normalizer-0.4.0.dev2.tar.gz
- Upload date:
- Size: 44.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1722fedf41f86717fae842d744aeda540c14a4b0d876b4916e6a1d257e2c3b0a |
|
MD5 | 9045331722256b8176d14767bb3b417e |
|
BLAKE2b-256 | c94f38b4f48a6e67c7ef024788228fb415ff38bf2585eea72b7d83e44c1a4dd0 |
File details
Details for the file disease_normalizer-0.4.0.dev2-py3-none-any.whl
.
File metadata
- Download URL: disease_normalizer-0.4.0.dev2-py3-none-any.whl
- Upload date:
- Size: 51.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ff6eb534617edc1455c267a65c70a040f50d8d95b61261b31b63b98d99b89e0 |
|
MD5 | 2a83eb9eaa6218e53a041ca2ee15eb38 |
|
BLAKE2b-256 | edf41a229cadcf0b3281c16c3f4ad10ed5c279e9aa4b716a91c49322a85295df |