From d97f19daff022a260c3b111f2433b2a7d3d24e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Ros=C3=A9n?= Date: Thu, 29 Feb 2024 15:01:52 +0100 Subject: [PATCH] Use B hotel as well as A hotel for one batch projects --- cellpainter/cellpainter/protocol.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cellpainter/cellpainter/protocol.py b/cellpainter/cellpainter/protocol.py index 2a6b259..20abc81 100644 --- a/cellpainter/cellpainter/protocol.py +++ b/cellpainter/cellpainter/protocol.py @@ -93,7 +93,7 @@ class Locations: B: list[str] = [f'B{i}' for i in HB] Lid: list[str] = ['B19', 'B17'] - RT: list[str] = A[:21] + RT: list[str] = A[:21] + B[4:] L: list[str] = [f'L{i}' for i in I] R: list[str] = [f'R{i}' for i in I] @@ -106,7 +106,7 @@ class Locations: } Out: dict[str, list[str]] = { - '1 of 1': A[:21], + '1 of 1': A[:21] + B[4:], '1 of 2': B[4:] + A[18:], # 1st batch goes to B then starts to fill remaining locations in A (with one gap) '2 of 2': A[:17], # 2nd batch goes to A (up to 17 plates) }