Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

analysis: civic + moa variant analysis #20

Merged
merged 2 commits into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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