-
Notifications
You must be signed in to change notification settings - Fork 35
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
Scope expansion beyond whole slide imaging #25
Comments
The proposal here makes full sense to me as the internal Another point of discussion was the expectation/conventions in terms of the dimension order and how to communicate this to downstream consumers. The common ground was to use Also 👍 about storing a representation of the binary layout. Would encoding a binary layout version in the custom attributes be a good starting point or is there another native alternative? |
The current expectation, at least as far as this repository is concerned, is that the dimension order is reflected in the As far as storing the layout version, in #28 we are now doing that in the |
The initial intent of this repository and the complementary
raw2ometiff
tool was primarily the conversion of proprietary whole slide imaging file formats, such as MRXS, into OME-TIFF. Over the past few months there have been various external (#13, #19) contributions and internal discussions surrounding expanding this scope. Currently the data layout after conversion consists of the following files:METADATA.ome.xml
-- A dump of the OME-XML generated by Bio-Formats produced when initializing the Bio-Formats reader on the source filepyramid.n5
-- A 3 dimension (X, Y, C) N5 pyramid with levels described by ascending stringified N5 datasets as loosely described on Extension proposal: multiscale arrays v0.1 zarr-developers/zarr-specs#50LABELIMAGE.jpg
-- A JPEG compressed version of the source file Bio-Formats series which corresponds to the "Label image" (optional, only Bio-Formats series 1)<series_no>.jpg
-- A JPEG compressed version of additional Bio-Formats series beyond 1If coming from
isyntax2raw
the conversion may also consist of the following additional files:METADATA.json
-- A JSON encoded dump of the source file metadataMACROIMAGE.jpg
-- A JPEG compressed version of the source file Bio-Formats series which corresponds to the "Macro image"This conversion data layout is obviously quite singular in its intent. Firstly, we would like to expand to cover:
This would mean:
data.n5
or similar name for the N5 dataLABELIMAGE.jpg
,<series_no>.jpg
, etc. files and encoding all series from the source file in ascending stringified orderConsequently, the layout should reflect the following:
It was also the request of @joshmoore that we provide a mechanism to map series numbers to a corresponding unique identifier and if possible also allow
/
separated components of that identifier to be reflected in N5 group style.Edit (2020-04-17): Added item for forcing the dimension order
The text was updated successfully, but these errors were encountered: