From 0855e40eb57a275c67d6256c4f54be8f78f60667 Mon Sep 17 00:00:00 2001 From: Lisa Fischer Date: Fri, 13 Sep 2024 08:02:47 +0200 Subject: [PATCH 1/2] added 2x16 coordinate system for plate --- src/Plate/coordinateSystem2x16.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/Plate/coordinateSystem2x16.ts diff --git a/src/Plate/coordinateSystem2x16.ts b/src/Plate/coordinateSystem2x16.ts new file mode 100644 index 00000000..e5db64a8 --- /dev/null +++ b/src/Plate/coordinateSystem2x16.ts @@ -0,0 +1,25 @@ +import { CoordinateSystem } from './types'; + +export const COORDINATE_SYSTEM_2x16 = { + rows: [ + 'A', + 'B', + 'C', + 'D', + 'E', + 'F', + 'G', + 'H', + 'I', + 'J', + 'K', + 'L', + 'M', + 'N', + 'O', + 'P', + ], + columns: [1, 2], +} as const satisfies CoordinateSystem; + +export type CoordinateSystem2x16 = typeof COORDINATE_SYSTEM_2x16; From 0416fa2f07dcbce22d9a2601ef7c48c8c9101e65 Mon Sep 17 00:00:00 2001 From: Lisa Fischer Date: Fri, 13 Sep 2024 10:16:21 +0200 Subject: [PATCH 2/2] fix --- src/Plate/coordinateSystem2x16.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Plate/coordinateSystem2x16.ts b/src/Plate/coordinateSystem2x16.ts index e5db64a8..6d3935ae 100644 --- a/src/Plate/coordinateSystem2x16.ts +++ b/src/Plate/coordinateSystem2x16.ts @@ -1,6 +1,6 @@ import { CoordinateSystem } from './types'; -export const COORDINATE_SYSTEM_2x16 = { +export const COORDINATE_SYSTEM_2X16 = { rows: [ 'A', 'B', @@ -22,4 +22,4 @@ export const COORDINATE_SYSTEM_2x16 = { columns: [1, 2], } as const satisfies CoordinateSystem; -export type CoordinateSystem2x16 = typeof COORDINATE_SYSTEM_2x16; +export type CoordinateSystem2x16 = typeof COORDINATE_SYSTEM_2X16;