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

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

export default platemap61;
