|
4 | 4 | import hail as hl
|
5 | 5 | import pytz
|
6 | 6 |
|
7 |
| -from v03_pipeline.lib.misc.io import checkpoint |
8 | 7 | from v03_pipeline.lib.misc.nested_field import parse_nested_field
|
9 | 8 | from v03_pipeline.lib.model import (
|
10 | 9 | DatasetType,
|
@@ -36,10 +35,7 @@ def update_or_create_joined_ht(
|
36 | 35 | continue
|
37 | 36 |
|
38 | 37 | # Join the new one!
|
39 |
| - hl._set_flags(use_new_shuffle=None, no_whole_stage_codegen='1') # noqa: SLF001 |
40 | 38 | dataset_ht = get_dataset_ht(dataset, reference_genome)
|
41 |
| - dataset_ht, _ = checkpoint(dataset_ht) |
42 |
| - hl._set_flags(use_new_shuffle='1', no_whole_stage_codegen='1') # noqa: SLF001 |
43 | 39 | joined_ht = joined_ht.join(dataset_ht, 'outer')
|
44 | 40 | joined_ht = annotate_dataset_globals(joined_ht, dataset, dataset_ht)
|
45 | 41 |
|
@@ -216,10 +212,7 @@ def join_hts(
|
216 | 212 | ),
|
217 | 213 | )
|
218 | 214 | for dataset in reference_dataset_collection.datasets(dataset_type):
|
219 |
| - hl._set_flags(use_new_shuffle=None, no_whole_stage_codegen='1') # noqa: SLF001 |
220 | 215 | dataset_ht = get_dataset_ht(dataset, reference_genome)
|
221 |
| - dataset_ht, _ = checkpoint(dataset_ht) |
222 |
| - hl._set_flags(use_new_shuffle='1', no_whole_stage_codegen='1') # noqa: SLF001 |
223 | 216 | joined_ht = joined_ht.join(dataset_ht, 'outer')
|
224 | 217 | joined_ht = annotate_dataset_globals(joined_ht, dataset, dataset_ht)
|
225 | 218 | return joined_ht
|
0 commit comments