Skip to content

Commit 70b8cc4

Browse files
committed
correct typo
1 parent e707da8 commit 70b8cc4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

v03_pipeline/lib/reference_data/clinvar.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,5 +194,6 @@ def download_and_import_clinvar_submission_summary() -> hl.Table:
194194
},
195195
missing='-',
196196
)
197-
# NB: min_partitions fails with force=True but appears overrideable
198-
return ht.reparition(MIN_HT_PARTITIONS)
197+
# NB: min_partitions fails with force=True during `import_table`, but
198+
# an immediate repartition here works.
199+
return ht.repartition(MIN_HT_PARTITIONS)

0 commit comments

Comments
 (0)