Skip to content

Commit

Permalink
chore(rebuild): Merge pull request ome#112 from joshmoore/bf2raw
Browse files Browse the repository at this point in the history
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
joshmoore and github-actions[bot] committed Oct 20, 2022
1 parent 6db9c31 commit b85178d
Show file tree
Hide file tree
Showing 32 changed files with 3,146 additions and 667 deletions.
8 changes: 4 additions & 4 deletions 0.1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1487,9 +1487,9 @@
}
}
</style>
<meta content="Bikeshed version fb1e763a4, updated Tue Mar 1 13:13:50 2022 -0800" name="generator">
<meta content="Bikeshed version b0de3432c, updated Thu Oct 13 09:16:59 2022 -0700" name="generator">
<link href="https://ngff.openmicroscopy.org/0.1/" rel="canonical">
<meta content="8dec6918ee6630f43f339b281b66043e0a797ca4" name="document-revision">
<meta content="449fbca8a9d3fa7489e2e24039dc15a26ab3338d" name="document-revision">
<style>/* style-autolinks */

.css.css, .property.property, .descriptor.descriptor {
Expand Down Expand Up @@ -1825,7 +1825,7 @@
<div class="head">
<img alt="OME logo (6 circles in a hexagon)" src="http://www.openmicroscopy.org/img/logos/ome-logomark.svg" style="float:right;width:42px;height:42px;">
<h1 class="p-name no-ref" id="title">Next-generation file formats (NGFF)</h1>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Final Community Group Report, <time class="dt-updated" datetime="2022-03-18">18 March 2022</time></span></h2>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Final Community Group Report, <time class="dt-updated" datetime="2022-10-20">20 October 2022</time></span></h2>
<div data-fill-with="spec-metadata">
<dl>
<dt>This version:
Expand Down Expand Up @@ -2361,7 +2361,7 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont
and are set apart from the normative text
with <code>class="note"</code>,
like this: </p>
<p class="note" role="note">Note, this is an informative note. </p>
<p class="note" role="note">Note, this is an informative note.</p>
<h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3>
<p>Requirements phrased in the imperative as part of algorithms
(such as "strip any leading space characters"
Expand Down
112 changes: 112 additions & 0 deletions 0.1/schemas/image.schema
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" ]
}
112 changes: 112 additions & 0 deletions 0.1/schemas/plate.schema
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"
]
}
19 changes: 19 additions & 0 deletions 0.1/schemas/strict_image.schema
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"
]
}
}
}
}
]
}
47 changes: 47 additions & 0 deletions 0.1/schemas/well.schema
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"
]
}
}
}
8 changes: 4 additions & 4 deletions 0.2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1487,9 +1487,9 @@
}
}
</style>
<meta content="Bikeshed version fb1e763a4, updated Tue Mar 1 13:13:50 2022 -0800" name="generator">
<meta content="Bikeshed version b0de3432c, updated Thu Oct 13 09:16:59 2022 -0700" name="generator">
<link href="https://ngff.openmicroscopy.org/0.2/" rel="canonical">
<meta content="8dec6918ee6630f43f339b281b66043e0a797ca4" name="document-revision">
<meta content="449fbca8a9d3fa7489e2e24039dc15a26ab3338d" name="document-revision">
<style>/* style-autolinks */

.css.css, .property.property, .descriptor.descriptor {
Expand Down Expand Up @@ -1825,7 +1825,7 @@
<div class="head">
<img alt="OME logo (6 circles in a hexagon)" src="http://www.openmicroscopy.org/img/logos/ome-logomark.svg" style="float:right;width:42px;height:42px;">
<h1 class="p-name no-ref" id="title">Next-generation file formats (NGFF)</h1>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Final Community Group Report, <time class="dt-updated" datetime="2022-03-18">18 March 2022</time></span></h2>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Final Community Group Report, <time class="dt-updated" datetime="2022-10-20">20 October 2022</time></span></h2>
<div data-fill-with="spec-metadata">
<dl>
<dt>This version:
Expand Down Expand Up @@ -2413,7 +2413,7 @@ <h3 class="no-ref no-num heading settled" id="w3c-conventions"><span class="cont
and are set apart from the normative text
with <code>class="note"</code>,
like this: </p>
<p class="note" role="note">Note, this is an informative note. </p>
<p class="note" role="note">Note, this is an informative note.</p>
<h3 class="no-ref no-num heading settled" id="w3c-conformant-algorithms"><span class="content">Conformant Algorithms</span><a class="self-link" href="#w3c-conformant-algorithms"></a></h3>
<p>Requirements phrased in the imperative as part of algorithms
(such as "strip any leading space characters"
Expand Down
Loading

0 comments on commit b85178d

Please sign in to comment.