-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting TypeError: e.store.get is not a function #184
Comments
Hi there, thanks for trying out vizarr. I need to update the examples but the preferred way to use vizarr is through the custom Widget (not imJoy) #174 (comment) |
I'll work on updating the examples. In the meantime, you should be able to get started with the following (no need to clone this repo, just from fsspec import get_mapper
import zarr
# Create a remote mapping to the data
url = "https://uk1s3.embassy.ebi.ac.uk/idr/zarr/v0.1/6001240.zarr/"
store = get_mapper(url)
z_grp = zarr.open(store, mode='r')
z_grp import vizarr # make sure to pip install vizarr
viewer = vizarr.Viewer()
viewer.add_image(source=z_grp)
viewer |
Thanks for the prompt answer @manzt! I installed For some reason it is still not loading when used on colab; however, that might be related to a different reason. Thank you! |
Glad it's working for you! I needed a kick to update the notebook materials :) #186 |
I just tested again in colab and now is working completely. For completeness, I tested with zarr images stored remotely from IDR, and stored locally, both worked without issues. Thanks again for your help! |
great! |
Hi vizarr team, thanks for this amazing work!
I just started getting the following error early this week when trying to visualize Zarr files (stored localy or even remotely e.g. from IDR).
The viewer shows, but the image is not being loaded.
I've reproduced the error by cloning the most recent version of
vizarr
from this repository and following the steps from the IDR example (vizarr/example/IDR_example.ipynb).Here are the versions of the packages that I'm using:
The text was updated successfully, but these errors were encountered: