Skip to content

Commit

Permalink
Implementing new in-house background for svs (#32)
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
holtgrewe committed Jun 27, 2022
1 parent 45ddc0e commit 1fc7cb9
Show file tree
Hide file tree
Showing 24 changed files with 2,190 additions and 24 deletions.
2 changes: 2 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ End-User Summary
- Fixed smallvariant flags filter query (#502).
- Added flags `segregates`, `doesnt_segregate` and `no_disease_association` to file export (#502).
- Adjusting path to new varfish-annotator db download (#546).
- Implement new in-house background database for structural variants (#32).

Full Change List
================
Expand Down Expand Up @@ -59,6 +60,7 @@ Full Change List
- Fixed smallvariant flags filter query (#502).
- Added flags `segregates`, `doesnt_segregate` and `no_disease_association` to file export (#502).
- Adjusting path to new varfish-annotator db download (#546).
- Implement new in-house background database for structural variants (#32).

------
v1.2.0
Expand Down
3 changes: 3 additions & 0 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,9 @@ def set_logging(level=None):
# Number of cases to perform in one query for joint queries.
QUERY_MAX_UNION = env.int("VARFISH_QUERY_MAX_UNION", 20)

# Timeout (in hours) for VarFish cleaning up background SV sets in "building" state.
SV_CLEANUP_BUILDING_SV_SETS = env.int("VARFISH_SV_CLEANUP_BUILDING_SV_SETS", 48)

# Varfish: Exomiser
# ------------------------------------------------------------------------------

Expand Down
1 change: 0 additions & 1 deletion importer/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import tempfile
import uuid as uuid_object

import aldjemy
from bgjobs.models import BackgroundJob, LOG_LEVEL_ERROR, JobModelMessageMixin
from django.contrib import auth
from django.db import models, transaction
Expand Down
9 changes: 9 additions & 0 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,12 @@ django-saml2-auth-ai>=2.1.6, <2.2
# Code formatting.
black ==19.10b0
click >=8.0,<8.1

# Editable interval trees
intervaltree >=3.1.0,<4.0.0

# Pretty tables
prettytable >=3.3.0,<4.0

# process introspection
psutil >=5.9.0,<6.0

0 comments on commit 1fc7cb9

Please sign in to comment.