File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ def encode(
381
381
worker_processes ,
382
382
):
383
383
"""
384
- Convert intermediate columnar format to vcfzarr .
384
+ Convert intermediate columnar format to VCF Zarr .
385
385
"""
386
386
setup_logging (verbose )
387
387
check_overwrite_dir (zarr_path , force )
@@ -504,7 +504,7 @@ def convert_vcf(
504
504
local_alleles ,
505
505
):
506
506
"""
507
- Convert input VCF(s) directly to vcfzarr (not recommended for large files).
507
+ Convert input VCF(s) directly to VCF Zarr (not recommended for large files).
508
508
"""
509
509
setup_logging (verbose )
510
510
check_overwrite_dir (zarr_path , force )
@@ -523,7 +523,7 @@ def convert_vcf(
523
523
@click .group (cls = NaturalOrderGroup , name = "vcf2zarr" )
524
524
def vcf2zarr_main ():
525
525
"""
526
- Convert VCF file(s) to the vcfzarr format.
526
+ Convert VCF file(s) to VCF Zarr format.
527
527
528
528
See the online documentation at https://sgkit-dev.github.io/bio2zarr/
529
529
for more information.
@@ -579,6 +579,9 @@ def convert_plink(
579
579
@version
580
580
@click .group ()
581
581
def plink2zarr ():
582
+ """
583
+ Convert plink fileset(s) to VCF Zarr format
584
+ """
582
585
pass
583
586
584
587
@@ -678,6 +681,9 @@ def convert_tskit(
678
681
@version
679
682
@click .group ()
680
683
def tskit2zarr ():
684
+ """
685
+ Convert tskit tree sequence(s) to VCF Zarr format
686
+ """
681
687
pass
682
688
683
689
You can’t perform that action at this time.
0 commit comments