Skip to content

Commit 5d61a4e

Browse files
committed
index_globals
1 parent 3b3e778 commit 5d61a4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

v03_pipeline/lib/tasks/update_lookup_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def update_table(self, ht: hl.Table) -> hl.Table:
104104
ht = remove_new_callset_family_guids(
105105
ht,
106106
self.project_guid,
107-
callset_mt.family_samples.key_set(),
107+
callset_mt.index_globals().family_samples.key_set(),
108108
)
109109
callset_ht = compute_callset_lookup_ht(
110110
self.dataset_type,

v03_pipeline/lib/tasks/update_project_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def update_table(self, ht: hl.Table) -> hl.Table:
106106
)
107107
ht = remove_new_callset_family_guids(
108108
ht,
109-
callset_mt.family_samples.key_set(),
109+
callset_mt.index_globals().family_samples.key_set(),
110110
)
111111
ht = join_family_entries_hts(ht, callset_ht)
112112
return ht.select_globals(

0 commit comments

Comments
 (0)