-
Notifications
You must be signed in to change notification settings - Fork 10
Extended axes support #28
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
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
63c9936
Take axes metadata into account
dominikl 71c93bb
Add test checking default axes if not present
jburel dfe6319
Fix order since order in omero is reverse in ome.zarr
jburel 38838db
Merge pull request #1 from jburel/axes
dominikl d8a7e3c
Remove printlns
dominikl 7fef6bf
Remove commented out code
dominikl b6dc260
Remove unused imports
dominikl 7d9f338
Support zarr without c, t or z axes
dominikl a7cd5c9
Fix swapped xy tile size
dominikl 0020bb6
Fix issue when Z missing
dominikl e4eb3e9
Fix issue with checkReadSize
dominikl ed93541
Add integration tests for different dimensions
dominikl 8995b11
remove logging from TestZarr
dominikl 56df523
Moved classes into correct package
dominikl 04fe46e
Fix package declaration
dominikl de1096e
Fix order
jburel 51119b5
install blosc
jburel 0a30109
Check repo owner
jburel d000619
Merge pull request #2 from jburel/axes
dominikl bd95004
Some refactoring
dominikl 4d9ef53
Moved Utils method into TestZarr itself
dominikl c950c9c
Add more missing tests
dominikl ff75695
Use DimensionOrder
dominikl a0b3c47
Merge pull request #2 from dominikl/axes
dominikl 6945b90
Clarify order
dominikl bd1bac4
Remove usage of BF --order argument
dominikl 57bffda
Merge pull request #6 from dominikl/remove_bf_dim_order
jburel 96afc5a
Reduce calls to axesOrder.containsKey
dominikl 40c09cc
Simplify code
dominikl 6194831
Fix formatting
dominikl 3868956
Sanitise getAxisOrder
dominikl 195ec0f
Fix for loops
dominikl beeacff
Move z axis access into conditional block
dominikl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I feel like this should either be
setAxesOrderand set the member variable from the zarr, or it should check to see if the value has been set and just returnaxesOrderif it has.