generated from w3c-ccg/markdown-to-spec
-
Notifications
You must be signed in to change notification settings - Fork 62
bioformats2raw.layout #112
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
32 commits
Select commit
Hold shift + click to select a range
d7c0556
First draft of bioformats2raw.layout
joshmoore 8ee02d1
Add layout example
joshmoore ee15455
Improve wording of "SHOULD parse multiple images", thanks to Ilan
joshmoore c8e98e4
Clarify contents of METADATA.ome.xml, thanks to Melissa
joshmoore 6403d88
Add schema & test for bf2raw metadata
joshmoore 890e8a2
Add missing schema file
joshmoore b099281
Merge 'origin/main' into bf2raw
joshmoore 2b67a36
Add applicable versions statement
joshmoore 31d34c3
Update text with suggestions
joshmoore 3173303
Merge 'origin/main' into bf2raw
joshmoore d44a066
Add bf2raw examples config
joshmoore 7574d22
Add test to find missing configs
joshmoore ff5d7ec
Split subitems to pass linting
joshmoore e2119e5
Add graphical layout representation
joshmoore 4fcc045
Fix missing whitespace
joshmoore 57acc23
Add "series" attribute in "OME" group under bioformats2raw.layout
melissalinkert 5eca169
Update the MUST/SHOULD semantics
joshmoore cf4e04c
Fix doubly indented bullets
joshmoore 89c322d
Make minimum spec a link
joshmoore 3691437
Add no-toc sections
joshmoore 499caee
Re-arrange and add more text
joshmoore c7582e5
Make changes based on feedback from Will
joshmoore 399b70b
Add bf2raw plate example
joshmoore 740a11b
Add schema for ome series
joshmoore 1f91482
Apply suggestions from code review
joshmoore 861227b
Apply to v0.4 only
joshmoore 8e612ef
Re-iterate plate precedence without OME/METADATA.ome.xml
joshmoore a0919be
Backport latest/bf2raw to 0.4
joshmoore 5971927
Re-word the 'series' section
joshmoore 88fd042
Make plate/series link a "SHOULD"
joshmoore 7b7c43f
Add 'transitional' to 'omero' spec
joshmoore 106c301
Add 0.4.1 changelog
joshmoore 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "schema": "schemas/bf2raw.schema" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "bioformats2raw.layout" : 3 | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "bioformats2raw.layout" : 3, | ||
| "plate" : { | ||
| "columns" : [ { | ||
| "name" : "1" | ||
| } ], | ||
| "name" : "Plate Name 0", | ||
| "wells" : [ { | ||
| "path" : "A/1", | ||
| "rowIndex" : 0, | ||
| "columnIndex" : 0 | ||
| } ], | ||
| "field_count" : 1, | ||
| "rows" : [ { | ||
| "name" : "A" | ||
| } ], | ||
| "acquisitions" : [ { | ||
| "id" : 0 | ||
| } ], | ||
| "version" : "0.4" | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "schema": "schemas/ome.schema" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "series" : [ "0", "1" ] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "$schema": "https://json-schema.org/draft/2020-12/schema", | ||
| "$id": "https://ngff.openmicroscopy.org/latest/schemas/bf2raw.schema", | ||
| "title": "NGFF container produced by bioformats2raw", | ||
| "description": "JSON from OME-NGFF .zattrs", | ||
| "type": "object", | ||
| "properties": { | ||
| "bioformats2raw.layout": { | ||
| "description": "The top-level identifier metadata added by bioformats2raw", | ||
| "type": "number", | ||
| "enum": [3] | ||
| } | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| { | ||
| "$schema": "https://json-schema.org/draft/2020-12/schema", | ||
| "$id": "https://ngff.openmicroscopy.org/latest/schemas/ome.schema", | ||
| "title": "NGFF group produced by bioformats2raw to contain OME metadata", | ||
| "description": "JSON from OME-NGFF OME/.zattrs linked to an OME-XML file", | ||
| "type": "object", | ||
| "properties": { | ||
| "series": { | ||
| "description": "An array of the same length and the same order as the images defined in the OME-XML", | ||
| "type": "array", | ||
| "items": { | ||
| "type": "string" | ||
| }, | ||
| "minContains": 1 | ||
| } | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "schema": "schemas/bf2raw.schema" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "bioformats2raw.layout" : 3 | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "bioformats2raw.layout" : 3, | ||
| "plate" : { | ||
| "columns" : [ { | ||
| "name" : "1" | ||
| } ], | ||
| "name" : "Plate Name 0", | ||
| "wells" : [ { | ||
| "path" : "A/1", | ||
| "rowIndex" : 0, | ||
| "columnIndex" : 0 | ||
| } ], | ||
| "field_count" : 1, | ||
| "rows" : [ { | ||
| "name" : "A" | ||
| } ], | ||
| "acquisitions" : [ { | ||
| "id" : 0 | ||
| } ], | ||
| "version" : "0.4" | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "schema": "schemas/ome.schema" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "series" : [ "0", "1" ] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "$schema": "https://json-schema.org/draft/2020-12/schema", | ||
| "$id": "https://ngff.openmicroscopy.org/latest/schemas/bf2raw.schema", | ||
| "title": "NGFF container produced by bioformats2raw", | ||
| "description": "JSON from OME-NGFF .zattrs", | ||
| "type": "object", | ||
| "properties": { | ||
| "bioformats2raw.layout": { | ||
| "description": "The top-level identifier metadata added by bioformats2raw", | ||
| "type": "number", | ||
| "enum": [3] | ||
| } | ||
| } | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.