You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Out-of-memory access to portions of the calls could be efficiently done by using get_orthogonal_selection() method of the underlying Zarr library which loads only the needed slice of the zarr-array into a numpy-array:
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
The text was updated successfully, but these errors were encountered: