Skip to content

Commit

Permalink
Merge pull request #24 from bioio-devs/feature/longterm-public-zarr
Browse files Browse the repository at this point in the history
Update test ZARR path
  • Loading branch information
pgarrison authored Jul 23, 2024
2 parents 91b1b8e + d847a33 commit afbcc1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ img.data
To read from private S3 buckets or public buckets using `s3://` paths, [credentials](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) must be configured. Public buckets can be accessed without credentials by using the `https://` path.
```python
from bioio import BioImage
path = "https://allencell.s3.amazonaws.com/aics/nuc_morph_data/data_for_analysis/baseline_colonies/20200323_09_small/raw.ome.zarr"
path = "https://allencell.s3.amazonaws.com/aics/nuc-morph-dataset/hipsc_fov_nuclei_timelapse_dataset/hipsc_fov_nuclei_timelapse_data_used_for_analysis/baseline_colonies_fov_timelapse_dataset/20200323_09_small/raw.ome.zarr"
image = BioImage(path)
print(image.get_image_dask_data())
```
Expand Down
6 changes: 4 additions & 2 deletions bioio_ome_zarr/tests/test_s3_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ def test_ome_zarr_reader() -> None:
uri = (
# Cannot use s3:// URL due to ome-zarr issue #369
# "s3://allencell/aics/nuc_morph_data"
"https://allencell.s3.amazonaws.com/aics/nuc_morph_data"
"/data_for_analysis/baseline_colonies/20200323_09_small/raw.ome.zarr"
"https://allencell.s3.amazonaws.com/aics/nuc-morph-dataset"
"/hipsc_fov_nuclei_timelapse_dataset"
"/hipsc_fov_nuclei_timelapse_data_used_for_analysis"
"/baseline_colonies_fov_timelapse_dataset/20200323_09_small/raw.ome.zarr"
)
scene = "/"
resolution_level = 0
Expand Down

0 comments on commit afbcc1f

Please sign in to comment.