Skip to content

Commit ce647e1

Browse files
authored
Merge pull request #369 from VariantEffect/release-2024.4.3
Release 2024.4.3
2 parents 82cc0d6 + 7c951eb commit ce647e1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "mavedb"
7-
version = "2024.4.2"
7+
version = "2024.4.3"
88
description = "API for MaveDB, the database of Multiplexed Assays of Variant Effect."
99
license = "AGPL-3.0-only"
1010
readme = "README.md"

src/mavedb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
logger = module_logging.getLogger(__name__)
77

88
__project__ = "mavedb-api"
9-
__version__ = "2024.4.2"
9+
__version__ = "2024.4.3"
1010

1111
logger.info(f"MaveDB {__version__}")

src/mavedb/scripts/populate_mapped_variants.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ def populate_mapped_variant_data(db: Session, urns: Sequence[Optional[str]], all
6666

6767
try:
6868
existing_mapped_variants = (
69-
db.query(MappedVariant).join(Variant).join(ScoreSet).filter(MappedVariant.current.is_(True)).all()
69+
db.query(MappedVariant)
70+
.join(Variant)
71+
.join(ScoreSet)
72+
.filter(ScoreSet.id == ss_id, MappedVariant.current.is_(True))
73+
.all()
7074
)
7175

7276
for variant in existing_mapped_variants:

0 commit comments

Comments
 (0)