generated from w3c-ccg/markdown-to-spec
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from joshmoore/bf2raw
bioformats2raw.layout
- Loading branch information
Showing
17 changed files
with
336 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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.