UNPKG

plate-data-transfer

Version:

Rearranging plate-layouts according to liquid handling steps

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