plate_strict Examples#

This document contains JSON examples for plate_strict metadata layouts.

plate_6wells#

 1{
 2  "zarr_format": 3,
 3  "node_type": "group",
 4  "attributes": {
 5    "ome": {
 6      "version": "0.6.dev3",
 7      "plate": {
 8        "acquisitions": [
 9          {
10            "id": 1,
11            "maximumfieldcount": 2,
12            "name": "Meas_01(2012-07-31_10-41-12)",
13            "starttime": 1343731272000
14          },
15          {
16            "id": 2,
17            "maximumfieldcount": 2,
18            "name": "Meas_02(201207-31_11-56-41)",
19            "starttime": 1343735801000
20          }
21        ],
22        "columns": [
23          {
24            "name": "1"
25          },
26          {
27            "name": "2"
28          },
29          {
30            "name": "3"
31          }
32        ],
33        "field_count": 4,
34        "name": "test",
35        "rows": [
36          {
37            "name": "A"
38          },
39          {
40            "name": "B"
41          }
42        ],
43        "wells": [
44          {
45            "path": "A/1",
46            "rowIndex": 0,
47            "columnIndex": 0
48          },
49          {
50            "path": "A/2",
51            "rowIndex": 0,
52            "columnIndex": 1
53          },
54          {
55            "path": "A/3",
56            "rowIndex": 0,
57            "columnIndex": 2
58          },
59          {
60            "path": "B/1",
61            "rowIndex": 1,
62            "columnIndex": 0
63          },
64          {
65            "path": "B/2",
66            "rowIndex": 1,
67            "columnIndex": 1
68          },
69          {
70            "path": "B/3",
71            "rowIndex": 1,
72            "columnIndex": 2
73          }
74        ]
75      }
76    }
77  }
78}

plate_2wells#

 1{
 2  "zarr_format": 3,
 3  "node_type": "group",
 4  "attributes": {
 5    "ome": {
 6      "version": "0.6.dev3",
 7      "plate": {
 8        "acquisitions": [
 9          {
10            "id": 1,
11            "maximumfieldcount": 1,
12            "name": "single acquisition",
13            "starttime": 1343731272000
14          }
15        ],
16        "columns": [
17          {
18            "name": "1"
19          },
20          {
21            "name": "2"
22          },
23          {
24            "name": "3"
25          },
26          {
27            "name": "4"
28          },
29          {
30            "name": "5"
31          },
32          {
33            "name": "6"
34          },
35          {
36            "name": "7"
37          },
38          {
39            "name": "8"
40          },
41          {
42            "name": "9"
43          },
44          {
45            "name": "10"
46          },
47          {
48            "name": "11"
49          },
50          {
51            "name": "12"
52          }
53        ],
54        "field_count": 1,
55        "name": "sparse test",
56        "rows": [
57          {
58            "name": "A"
59          },
60          {
61            "name": "B"
62          },
63          {
64            "name": "C"
65          },
66          {
67            "name": "D"
68          },
69          {
70            "name": "E"
71          },
72          {
73            "name": "F"
74          },
75          {
76            "name": "G"
77          },
78          {
79            "name": "H"
80          }
81        ],
82        "wells": [
83          {
84            "path": "C/5",
85            "rowIndex": 2,
86            "columnIndex": 4
87          },
88          {
89            "path": "D/7",
90            "rowIndex": 3,
91            "columnIndex": 6
92          }
93        ]
94      }
95    }
96  }
97}