I'm getting errors with this:
sc2ts/sc2ts/dataset.py", line 261, in init
self.store = zarr.ZipStore(path)
According to chatGPT:
zarr.ZipStore is trying to open the ZIP file in a mode that requires write access.
Your plain open(...) succeeds because the default mode for open() is read-only ("r"). But zarr.ZipStore(...)defaults to append/update mode > (mode="a"), which requires write permission on the file.
I'm getting errors with this:
According to chatGPT: