Skip to content

Commit b4721d2

Browse files
committed
Add Score Set ID to statistics materialized view
1 parent 4032f33 commit b4721d2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/mavedb/models/published_variant.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
select(
1313
Variant.id.label("variant_id"),
1414
MappedVariant.id.label("mapped_variant_id"),
15+
ScoreSet.id.label("score_set_id"),
1516
ScoreSet.published_date.label("published_date"),
1617
MappedVariant.current.label("current_mapped_variant"),
1718
)
@@ -35,5 +36,6 @@ class PublishedVariantsMV(MaterializedView):
3536

3637
variant_id = __table__.c.variant_id
3738
mapped_variant_id = __table__.c.mapped_variant_id
39+
score_set_id = __table__.c.score_set_id
3840
published_date = __table__.c.published_date
3941
current_mapped_variant = __table__.c.current_mapped_variant

0 commit comments

Comments
 (0)