Skip to article frontmatterSkip to article content

bf2raw Examples

This document contains JSON examples for bf2raw metadata layouts.

image

image.json
1
2
3
{
  "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
{
  "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"
  }
}