Skip to content

Commit

Permalink
Merge pull request #146 from will-moore/fix_downsample_image_path
Browse files Browse the repository at this point in the history
Fix path/to/image when exporting Plate images
  • Loading branch information
joshmoore authored Aug 23, 2023
2 parents 12ed0a9 + 983576f commit c93d455
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/omero_zarr/raw_pixels.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ def downsample_pyramid_on_disk(parent: Group, paths: List[str]) -> List[str]:
# write to disk
da.to_zarr(
arr=output,
url=parent.store,
component=str(path),
url=image_path,
component=path,
dimension_separator=parent._store._dimension_separator,
)

Expand Down

0 comments on commit c93d455

Please sign in to comment.