-
Notifications
You must be signed in to change notification settings - Fork 1
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
bugfix/scyjava-testing-fix #19
base: main
Are you sure you want to change the base?
Conversation
@@ -196,7 +187,7 @@ | |||
(1, 3, 1, 1024, 1024), | |||
np.uint16, | |||
dimensions.DEFAULT_DIMENSION_ORDER, | |||
["Red", "Green", "Blue"], | |||
["Channel:0:0", "Channel:0:1", "Channel:0:2"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is actually a return to what we had before. The last commit to main updated it to ["Red", "Green", "Blue"]
@@ -383,9 +374,9 @@ def test_bioformats_reader_large_files( | |||
( | |||
"S=2_4x2_T=2=Z=3_CH=2.czi", | |||
"S=2_4x2_T=2=Z=3_CH=2.czi #1", | |||
(2, 2, 3, 487, 947), | |||
(2, 2, 3, 488, 948), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what caused this minor pixel increase...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we load the file in Zen and see what dimensions it reports?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM ... Regarding the bf_version check for 6.7, do we have a min version for bioformats in this reader?
Fixes Ci broken on main branch. This PR removes some weird logic about the depreciated bioformats_jar that was skipping running our tests. Additionally this returns the values of one of our tests that was modified back to its original value, while reassigning dims to another test. (The second change I am not sure of the source).
Also resolves #10