We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Just wanted to point out that with zarr-developers/zarr-python#546
import zarr import gcsfs store_path = 'ag1000g-release/phase2.AR1/variation/main/zarr/all/ag1000g.phase2.ar1' gcs = gcsfs.GCSFileSystem(token='anon') store = gcs.get_mapper(store_path) callset = zarr.open_consolidated(store=store)
becomes
import zarr callset = zarr.open_consolidated("gcs://ag1000g-release/phase2.AR1/variation/main/zarr/all/ag1000g.phase2.ar1")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just wanted to point out that with zarr-developers/zarr-python#546
becomes
The text was updated successfully, but these errors were encountered: