Skip to content

Commit

Permalink
analysis: civic + moa variant analysis (#20)
Browse files Browse the repository at this point in the history
Focuses mainly on the variants and terms we support, don't support, and whether or not we can normalize
  • Loading branch information
korikuzma authored Jun 27, 2023
1 parent f03802f commit 722338f
Show file tree
Hide file tree
Showing 16 changed files with 8,201 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .gitignore
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
11 changes: 11 additions & 0 deletions Makefile
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 '###############################################################################'
10 changes: 10 additions & 0 deletions README.md
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
```
1,870 changes: 1,870 additions & 0 deletions analysis/civic/able_to_normalize_queries.csv

Large diffs are not rendered by default.

Loading

0 comments on commit 722338f

Please sign in to comment.