Skip to content

Commit

Permalink
fix: set default compression for voxel counts to zstd
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Dec 18, 2024
1 parent 1a89c50 commit 36ab477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion igneous_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def count_voxels(ctx, path, mip, queue):
@voxelgroup.command("sum")
@click.argument("path", type=CloudPath())
@click.option('--mip', default=0, help="Count this mip level of the image pyramid.", show_default=True)
@click.option('--compress', default=None, help="", show_default=True)
@click.option('--compress', default="zstd", help="What compression algorithm to apply. These files can be pretty big and must be downloaded by workers.", show_default=True)
@click.pass_context
def sum_voxel_counts(ctx, path, mip, compress):
"""Accumulate counts from each task.
Expand Down

0 comments on commit 36ab477

Please sign in to comment.