Skip to content

Commit f9cea3f

Browse files
Disable progress for dexplode-partition
Not helpful when run non-interactively, so turn it off
1 parent 8983c85 commit f9cea3f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- Fix bug in schema handling (compressor settings ignored)
44
- Move making ICF field partition directories into per-partition processing.
55
Remove progress on the init mkdirs step.
6+
- Turn off progress monitor on dexplode-partition
67

78
# 0.0.4 2024-04-08
89

bio2zarr/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def dexplode_partition(icf_path, partition, verbose):
207207
from 0 (inclusive) to the number of paritions returned by dexplode_init (exclusive).
208208
"""
209209
setup_logging(verbose)
210-
vcf.explode_partition(icf_path, partition, show_progress=True)
210+
vcf.explode_partition(icf_path, partition, show_progress=False)
211211

212212

213213
@click.command

0 commit comments

Comments
 (0)