Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More explode refactoring #91

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bio2zarr/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def setup_logging(verbosity):
@column_chunk_size
def explode(vcfs, zarr_path, verbose, worker_processes, column_chunk_size):
"""
Convert VCF(s) to columnar intermediate format
Convert VCF(s) to intermediate columnar format
"""
setup_logging(verbose)
vcf.explode(
Expand All @@ -92,7 +92,7 @@ def explode(vcfs, zarr_path, verbose, worker_processes, column_chunk_size):
@worker_processes
def dexplode_init(vcfs, icf_path, num_partitions, verbose, worker_processes):
"""
Initial step for parallel conversion of VCF(s) to columnar intermediate format
Initial step for parallel conversion of VCF(s) to intermediate columnar format
over the requested number of paritions.
"""
setup_logging(verbose)
Expand All @@ -115,7 +115,7 @@ def dexplode_init(vcfs, icf_path, num_partitions, verbose, worker_processes):
@column_chunk_size
def dexplode_slice(path, start, end, verbose, worker_processes, column_chunk_size):
"""
Convert VCF(s) to columnar intermediate format
Convert VCF(s) to intermediate columnar format
"""
setup_logging(verbose)
vcf.explode_slice(
Expand All @@ -133,7 +133,7 @@ def dexplode_slice(path, start, end, verbose, worker_processes, column_chunk_siz
@verbose
def dexplode_finalise(path, verbose):
"""
Final step for parallel conversion of VCF(s) to columnar intermediate format
Final step for parallel conversion of VCF(s) to intermediate columnar format
"""
setup_logging(verbose)
vcf.explode_finalise(path)
Expand Down
Loading