Hi,
I am trying to read my genomic data and to follow the tutorial:
callset = zarr.open('test.zarr', mode='r') variants = callset['chr7B']['variants']
but I am getting this error:
raise KeyError(item)
KeyError: 'chr7B'
When I print out a list of all chromosome, chr7B is included:
list(callset['variants/CHROM/']
Any ideas what I am doing wrong?
Thanks