import { getPlate } from "well-id-formatter";
import { PlateMapType } from "../../PlateTypes";

const platemap12_1: PlateMapType = getPlate(12).map((plate_wells) => {
  return {
    Plate: "plate-12-1",
    Well: plate_wells.unpadded,
    val1: Math.random() < 0.1 ? null : plate_wells.row,
    val2: plate_wells.column,
    rando: Math.round(Math.random() * 100) / 100,
  };
});

export default platemap12_1;
