-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(rebuild): Merge pull request ome#112 from joshmoore/bf2raw
bioformats2raw.layout SHA: 449fbca Reason: push, by @thewtex Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
6db9c31
commit b85178d
Showing
32 changed files
with
3,146 additions
and
667 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
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,112 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://ngff.openmicroscopy.org/0.1/schemas/image.schema", | ||
"title": "NGFF Image", | ||
"description": "JSON from OME-NGFF .zattrs", | ||
"type": "object", | ||
"properties": { | ||
"multiscales": { | ||
"description": "The multiscale datasets for this image", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"datasets": { | ||
"type": "array", | ||
"minItems": 1, | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["path"] | ||
} | ||
}, | ||
"version": { | ||
"type": "string", | ||
"enum": [ | ||
"0.1" | ||
] | ||
}, | ||
"metadata": { | ||
"type": "object", | ||
"properties": { | ||
"method": { | ||
"type": "string" | ||
}, | ||
"version": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"datasets" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"omero": { | ||
"type": "object", | ||
"properties": { | ||
"channels": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"window": { | ||
"type": "object", | ||
"properties": { | ||
"end": { | ||
"type": "number" | ||
}, | ||
"max": { | ||
"type": "number" | ||
}, | ||
"min": { | ||
"type": "number" | ||
}, | ||
"start": { | ||
"type": "number" | ||
} | ||
}, | ||
"required": [ | ||
"start", | ||
"min", | ||
"end", | ||
"max" | ||
] | ||
}, | ||
"label": { | ||
"type": "string" | ||
}, | ||
"family": { | ||
"type": "string" | ||
}, | ||
"color": { | ||
"type": "string" | ||
}, | ||
"active": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"required": [ | ||
"window", | ||
"color" | ||
] | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"channels" | ||
] | ||
} | ||
}, | ||
"required": [ "multiscales" ] | ||
} |
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,112 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://ngff.openmicroscopy.org/0.1/schemas/plate.schema", | ||
"title": "OME-NGFF plate schema", | ||
"description": "JSON from OME-NGFF Plate .zattrs", | ||
"type": "object", | ||
"properties": { | ||
"plate": { | ||
"type": "object", | ||
"properties": { | ||
"version": { | ||
"type": "string", | ||
"enum": [ | ||
"0.1" | ||
] | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"columns": { | ||
"description": "Columns of the Plate grid", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"name" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"rows": { | ||
"description": "Rows of the Plate grid", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"name" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"wells": { | ||
"description": "Rows of the Plate grid", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"path" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"field_count": { | ||
"description": "Maximum number of fields per view across all wells." | ||
}, | ||
"acquisitions": { | ||
"description": "Rows of the Plate grid", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "number" | ||
}, | ||
"maximumfieldcount": { | ||
"type": "number" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"starttime": { | ||
"type": "number" | ||
} | ||
}, | ||
"required": [ | ||
"id" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
} | ||
}, | ||
"required": [ | ||
"version", "columns", "rows", "wells" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"plate" | ||
] | ||
} |
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,19 @@ | ||
{ | ||
"$id": "https://ngff.openmicroscopy.org/0.1/schemas/strict_image.schema", | ||
"allOf": [ | ||
{ | ||
"$ref": "https://ngff.openmicroscopy.org/0.1/schemas/image.schema" | ||
}, | ||
{ | ||
"properties": { | ||
"multiscales": { | ||
"items": { | ||
"required": [ | ||
"version", "metadata", "type", "name" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} |
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,47 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://ngff.openmicroscopy.org/0.1/schemas/well.schema", | ||
"title": "OME-NGFF well schema", | ||
"description": "JSON from OME-NGFF .zattrs", | ||
"type": "object", | ||
"properties": { | ||
"well": { | ||
"type": "object", | ||
"properties": { | ||
"images": { | ||
"description": "The fields of view for this well", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"acquisition": { | ||
"description": "A unique identifier within the context of the plate", | ||
"type": "integer" | ||
}, | ||
"path": { | ||
"description": "The path for this field of view subgroup", | ||
"type": "string", | ||
"pattern": "^[A-Za-z0-9]+$" | ||
} | ||
}, | ||
"required": [ | ||
"path" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"version": { | ||
"description": "The version of the specification", | ||
"type": "string", | ||
"enum": [ | ||
"0.1" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"images" | ||
] | ||
} | ||
} | ||
} |
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
Oops, something went wrong.