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