Skip to article frontmatterSkip to article content

bf2raw

This document contains JSON examples for bf2raw metadata layouts.

image

image.json
1
2
3
4
5
6
7
8
9
10
{
  "zarr_format": 3,
  "node_type": "group",
  "attributes": {
    "ome": {
      "version": "0.5",
      "bioformats2raw.layout": 3
    }
  }
}

plate

plate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "zarr_format": 3,
  "node_type": "group",
  "attributes": {
    "ome": {
      "version": "0.5",
      "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
          }
        ]
      }
    }
  }
}