VICC normalization routine for genes
Project description
Gene Normalization
Services and guidelines for normalizing gene terms
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.
Once installed, from the project root dir, just run:
pipenv shell
pipenv lock && pipenv sync
Gene Normalization relies on SeqRepo data.
From the root directory:
pip install seqrepo
sudo mkdir /usr/local/share/seqrepo
sudo chown $USER /usr/local/share/seqrepo
seqrepo pull -i 2021-01-29
Deploying DynamoDB Locally
We use Amazon DynamoDB for our database. To deploy locally, follow these instructions.
Init coding style tests
Code style is managed by flake8 and checked prior to commit.
We use pre-commit to run conformance tests.
This ensures:
- Check code style
- Check for added large files
- Detect AWS Credentials
- Detect Private Key
Before first commit run:
pre-commit install
Running unit tests
Running unit tests is as easy as pytest.
pipenv run pytest
Updating the gene normalization database
Before you use the CLI to update the database, run the following in a separate terminal to start a local DynamoDB service on port 8000
:
java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb
To change the port, simply add -port value
.
Update source(s)
The sources we currently use are: HGNC, Ensembl, and NCBI.
To update one source, simply set --normalizer
to the source you wish to update.
From the project root, run the following to update the HGNC source:
python3 -m gene.cli --normalizer="hgnc"
To update multiple sources, you can use the --normalizer
flag with the source names separated by spaces.
Update all sources
To update all sources, use the --update_all
flag.
From the project root, run the following to update all sources:
python3 -m gene.cli --update_all
Specifying the database URL endpoint
The default URL endpoint is http://localhost:8000
.
There are two different ways to specify the database URL endpoint.
The first way is to set the --db_url
flag to the URL endpoint.
python3 -m gene.cli --update_all --db_url="http://localhost:8001"
The second way is to set the GENE_NORM_DB_URL
to the URL endpoint.
export GENE_NORM_DB_URL="http://localhost:8001"
python3 -m gene.cli --update_all
Starting the gene normalization service
From the project root, run the following:
uvicorn gene.main:app --reload
Next, view the OpenAPI docs on your local machine:
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 gene-normalizer-0.2.1.tar.gz
.
File metadata
- Download URL: gene-normalizer-0.2.1.tar.gz
- Upload date:
- Size: 36.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de11490ab4daefb3ba7afbcdec01bd3e144520c755c30db88c844f5cece7b090 |
|
MD5 | efe5a28effdfcd424451d62d9b45afd6 |
|
BLAKE2b-256 | 0418db020ce1cddd14d9f7228594c0facc63a4b1702667188baed3859619c8c4 |
File details
Details for the file gene_normalizer-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: gene_normalizer-0.2.1-py3-none-any.whl
- Upload date:
- Size: 42.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5f0d492c2d6e242c5047ce46d66381c93d2bc1ce2512ca4f8fcc7f20d369c5a |
|
MD5 | fadf52470959af5d89a7994aa794e791 |
|
BLAKE2b-256 | 73795877fb387e3f2cf53bd9e7d521c395d535e2aa4b2883307ce045f026f790 |