Skip to content

Commit 6214967

Browse files
committed
move checkpoint
1 parent 0bec9de commit 6214967

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

v03_pipeline/lib/reference_datasets/splice_ai.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ def get_ht(
99
paths: list[str],
1010
reference_genome: ReferenceGenome,
1111
) -> hl.Table:
12-
ht = vcf_to_ht(paths, reference_genome)
13-
1412
# NB: We ran into weird issues...running out
1513
# of file descriptors on dataproc :/
16-
ht, _ = checkpoint(ht)
1714
hl._set_flags(use_new_shuffle=None, no_whole_stage_codegen='1') # noqa: SLF001
15+
ht = vcf_to_ht(paths, reference_genome)
16+
ht, _ = checkpoint(ht)
17+
1818

1919
# SpliceAI INFO field description from the VCF header: SpliceAIv1.3 variant annotation. These include
2020
# delta scores (DS) and delta positions (DP) for acceptor gain (AG), acceptor loss (AL), donor gain (DG), and

0 commit comments

Comments
 (0)