plate-data-transfer
Version:
Rearranging plate-layouts according to liquid handling steps
15 lines (12 loc) • 414 B
text/typescript
import { getPlate } from "well-id-formatter";
import { PlateMapType } from "../../PlateTypes";
const platemap48_1: PlateMapType = getPlate(48).map((plate_wells) => {
return {
Plate: "plate-48-1",
Well: plate_wells.unpadded,
val01: Math.random() < 0.1 ? null : plate_wells.row,
val02: plate_wells.column,
rando01: Math.round(Math.random() * 100) / 100,
};
});
export default platemap48_1;