Skip to content

Commit

Permalink
Merge pull request #369 from VariantEffect/release-2024.4.3
Browse files Browse the repository at this point in the history
Release 2024.4.3
  • Loading branch information
bencap authored Dec 10, 2024
2 parents 82cc0d6 + 7c951eb commit ce647e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "mavedb"
version = "2024.4.2"
version = "2024.4.3"
description = "API for MaveDB, the database of Multiplexed Assays of Variant Effect."
license = "AGPL-3.0-only"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/mavedb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
logger = module_logging.getLogger(__name__)

__project__ = "mavedb-api"
__version__ = "2024.4.2"
__version__ = "2024.4.3"

logger.info(f"MaveDB {__version__}")
6 changes: 5 additions & 1 deletion src/mavedb/scripts/populate_mapped_variants.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ def populate_mapped_variant_data(db: Session, urns: Sequence[Optional[str]], all

try:
existing_mapped_variants = (
db.query(MappedVariant).join(Variant).join(ScoreSet).filter(MappedVariant.current.is_(True)).all()
db.query(MappedVariant)
.join(Variant)
.join(ScoreSet)
.filter(ScoreSet.id == ss_id, MappedVariant.current.is_(True))
.all()
)

for variant in existing_mapped_variants:
Expand Down

0 comments on commit ce647e1

Please sign in to comment.