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
Thank you so much for the amazing implementation of anndata in rust. It helps a lot with my research.
I need your help with reading the Zarr file.
I've been testing zarr format input, however, it complains about the error message below. I can't figure out what the error means. I hope you can help me out about this.
called `Result::unwrap()` on an `Err` value: incompatible fill value 0 for data type string
the code I used was
let path = "/Users/fangzq/Data/NK/ZZM_panNK_test5.zarr";let pbuf = Zarr::open::<PathBuf>(path.to_string());let adata = AnnData::<Zarr>::open(pbuf.unwrap()).unwrap();
I used scanpy to save h5ad file to zarr. h5ad works great in rust, but zarr is not.