-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
analysis: civic + moa variant analysis (#20)
Focuses mainly on the variants and terms we support, don't support, and whether or not we can normalize
- Loading branch information
Showing
16 changed files
with
8,201 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
*.pyc | ||
__pycache__/ | ||
|
||
instance/ | ||
|
||
.pytest_cache/ | ||
.coverage | ||
.coverage.* | ||
htmlcov/ | ||
.vim/ | ||
|
||
dist/ | ||
*.egg-info/ | ||
|
||
.DS_Store | ||
|
||
.mypy_cache/ | ||
|
||
.python-version | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints/ | ||
|
||
# Logs | ||
*.log | ||
|
||
# Zip | ||
*.zip | ||
|
||
build/ | ||
dynamodb_local_latest/ | ||
|
||
# Env files | ||
.env | ||
|
||
# pickle files | ||
*.pkl | ||
|
||
# venv | ||
.venv |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.PHONY: venv requirements test code-quality autochangelog | ||
|
||
venv: | ||
rm -rf .venv | ||
python3.11 -m venv .venv | ||
|
||
devready: venv | ||
.venv/bin/pip install -r requirements.txt | ||
@echo '###############################################################################' | ||
@echo '### Do not forget to `source .venv/bin/activate` to use this environment ###' | ||
@echo '###############################################################################' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Variation Normalizer Manuscript | ||
|
||
## Set Up | ||
|
||
To create the venv: | ||
|
||
```shell | ||
make devready | ||
source .venv/bin/activate | ||
``` |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.