Skip to content
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

Add Y5 to orange display color group #224

Merged
merged 2 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion iohub/display_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"blue": ["Blue", "DAPI", "BFP", "Hoechst"],
"red": ["Red"],
"yellow": ["Yellow", "Cy3"], # Emission around 540-570 nm
"orange": ["Orange", "Cy5"], # emission around 650-680 nm
"orange": ["Orange", "Cy5", "Y5"], # emission around 650-680 nm
}


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dev =
hypothesis>=6.61.0
requests>=2.22.0
wget>=3.2
ome-zarr>=0.6.1
ome-zarr>=0.9.0
doc =
matplotlib
numpydoc>=1.1.0
Expand Down
2 changes: 1 addition & 1 deletion tests/ngff/test_ngff.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def test_write_ome_zarr(channels_and_random_5d, arr_name):
# round-trip test with the offical reader implementation
ext_reader = Reader(parse_url(dataset.zgroup.store.path))
node = list(ext_reader())[0]
assert node.metadata["name"] == channel_names
assert node.metadata["channel_names"] == channel_names
assert node.specs[0].datasets == [arr_name]
assert node.data[0].shape == random_5d.shape
assert node.data[0].dtype == random_5d.dtype
Expand Down
Loading