@@ -46,32 +46,32 @@ def explode(vcfs, out_path, verbose, worker_processes, column_chunk_size):
46
46
47
47
48
48
@click .command
49
- @click .argument ("columnarised " , type = click .Path ())
49
+ @click .argument ("if_path " , type = click .Path ())
50
50
@verbose
51
- def inspect (columnarised , verbose ):
51
+ def inspect (if_path , verbose ):
52
52
setup_logging (verbose )
53
- data = vcf .inspect (columnarised )
53
+ data = vcf .inspect (if_path )
54
54
click .echo (tabulate .tabulate (data , headers = "keys" ))
55
55
56
56
57
57
@click .command
58
- @click .argument ("columnarised " , type = click .Path ())
58
+ @click .argument ("if_path " , type = click .Path ())
59
59
# @click.argument("specfile", type=click.Path())
60
- def genspec (columnarised ):
60
+ def genspec (if_path ):
61
61
stream = click .get_text_stream ("stdout" )
62
- vcf .generate_spec (columnarised , stream )
62
+ vcf .generate_spec (if_path , stream )
63
63
64
64
65
65
@click .command
66
- @click .argument ("columnarised " , type = click .Path ())
66
+ @click .argument ("if_path " , type = click .Path ())
67
67
@click .argument ("zarr_path" , type = click .Path ())
68
68
@verbose
69
69
@click .option ("-s" , "--conversion-spec" , default = None )
70
70
@worker_processes
71
- def to_zarr (columnarised , zarr_path , verbose , conversion_spec , worker_processes ):
71
+ def to_zarr (if_path , zarr_path , verbose , conversion_spec , worker_processes ):
72
72
setup_logging (verbose )
73
73
vcf .to_zarr (
74
- columnarised ,
74
+ if_path ,
75
75
zarr_path ,
76
76
conversion_spec ,
77
77
worker_processes = worker_processes ,
0 commit comments