UNPKG

plate-data-transfer

Version:

Rearranging plate-layouts according to liquid handling steps

15 lines (12 loc) 408 B
import { getPlate } from "well-id-formatter"; import { PlateMapType } from "../../PlateTypes"; const platemap96_1: PlateMapType = getPlate(96).map((plate_wells) => { return { Plate: "plate-96-1", Well: plate_wells.padded, val1: plate_wells.row, val2: plate_wells.column, rando: Math.random() < 0.1 ? null : Math.round(Math.random() * 100) / 100, }; }); export default platemap96_1;