We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e707da8 commit 70b8cc4Copy full SHA for 70b8cc4
v03_pipeline/lib/reference_data/clinvar.py
@@ -194,5 +194,6 @@ def download_and_import_clinvar_submission_summary() -> hl.Table:
194
},
195
missing='-',
196
)
197
- # NB: min_partitions fails with force=True but appears overrideable
198
- return ht.reparition(MIN_HT_PARTITIONS)
+ # NB: min_partitions fails with force=True during `import_table`, but
+ # an immediate repartition here works.
199
+ return ht.repartition(MIN_HT_PARTITIONS)
0 commit comments