Skip to content

Commit eff732a

Browse files
committed
remove pairing
1 parent 3d317cf commit eff732a

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

v03_pipeline/lib/tasks/update_lookup_table.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import luigi
33
import luigi.util
44

5-
from v03_pipeline.lib.misc.callsets import callset_project_pairs
65
from v03_pipeline.lib.misc.lookup import (
76
compute_callset_lookup_ht,
87
join_lookup_hts,
@@ -53,6 +52,7 @@ def requires(self) -> list[luigi.Task]:
5352
project_guid=project_guid,
5453
project_remap_path=project_remap_path,
5554
project_pedigree_path=project_pedigree_path,
55+
force=False,
5656
)
5757
for (
5858
project_guid,
@@ -69,15 +69,7 @@ def requires(self) -> list[luigi.Task]:
6969
def update_table(self, ht: hl.Table) -> hl.Table:
7070
# NB: there's a chance this many hail operations blows the DAG compute stack
7171
# in an unfortunate way. Please keep an eye out!
72-
for i, (callset_path, project_guid, _, _, _) in enumerate(
73-
callset_project_pairs(
74-
self.callset_paths,
75-
self.project_guids,
76-
self.project_remap_paths,
77-
self.project_pedigree_paths,
78-
self.imputed_sex_paths,
79-
),
80-
):
72+
for i, project_guid in enumerate(self.project_guids):
8173
if project_guid in PROJECTS_EXCLUDED_FROM_LOOKUP:
8274
ht = ht.annotate_globals(
8375
updates=ht.updates.add(

0 commit comments

Comments
 (0)