@@ -125,14 +125,16 @@ def initialize_table(self) -> hl.Table:
125
125
def update_table (self , ht : hl .Table ) -> hl .Table :
126
126
# NB: there's a chance this many hail operations blows the DAG compute stack
127
127
# in an unfortunate way. Please keep an eye out!
128
- for i , (callset_path , project_guid , _ , _ ) in enumerate (callset_project_pairs (
129
- self .callset_paths ,
130
- self .project_guids ,
131
- self .project_remap_paths ,
132
- self .project_pedigree_paths ,
133
- )):
128
+ for i , (callset_path , project_guid , _ , _ ) in enumerate (
129
+ callset_project_pairs (
130
+ self .callset_paths ,
131
+ self .project_guids ,
132
+ self .project_remap_paths ,
133
+ self .project_pedigree_paths ,
134
+ )
135
+ ):
134
136
if project_guid in PROJECTS_EXCLUDED_FROM_LOOKUP :
135
- ht = ht .annotate_globals (
137
+ ht = ht .annotate_globals (
136
138
updates = ht .updates .add (
137
139
hl .Struct (
138
140
callset = callset_path ,
@@ -160,7 +162,9 @@ def update_table(self, ht: hl.Table) -> hl.Table:
160
162
project_guids = ht .project_guids ,
161
163
project_families = ht .project_families ,
162
164
updates = ht .updates .add (
163
- hl .Struct (callset = self .callset_path , project_guid = self .project_guid ),
165
+ hl .Struct (
166
+ callset = self .callset_path , project_guid = self .project_guid
167
+ ),
164
168
),
165
169
)
166
170
return ht
0 commit comments