Skip to content

Commit

Permalink
ome_zarr.format: do not normalize_keys
Browse files Browse the repository at this point in the history
For writing HCS datasets where group names are case-sensitive (e.g. A), this
option alters the name and creates a mismatch with the plate metadata.
  • Loading branch information
sbesson committed Jan 5, 2022
1 parent 7105153 commit f468a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ome_zarr/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def init_store(self, path: str, mode: str = "r") -> FSStore:

kwargs = {
"dimension_separator": "/",
"normalize_keys": True,
"normalize_keys": False,
}

mkdir = True
Expand Down

1 comment on commit f468a0a

@joshmoore
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With zarr-developers/zarr-python#842 it might suffice to just remove the argument, though to support versions before and after the commit, 👍 for keeping this around a while.

Please sign in to comment.