Skip to content

Commit d97f19d

Browse files
committed
Use B hotel as well as A hotel for one batch projects
1 parent a56a793 commit d97f19d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cellpainter/cellpainter/protocol.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class Locations:
9393
B: list[str] = [f'B{i}' for i in HB]
9494

9595
Lid: list[str] = ['B19', 'B17']
96-
RT: list[str] = A[:21]
96+
RT: list[str] = A[:21] + B[4:]
9797

9898
L: list[str] = [f'L{i}' for i in I]
9999
R: list[str] = [f'R{i}' for i in I]
@@ -106,7 +106,7 @@ class Locations:
106106
}
107107

108108
Out: dict[str, list[str]] = {
109-
'1 of 1': A[:21],
109+
'1 of 1': A[:21] + B[4:],
110110
'1 of 2': B[4:] + A[18:], # 1st batch goes to B then starts to fill remaining locations in A (with one gap)
111111
'2 of 2': A[:17], # 2nd batch goes to A (up to 17 plates)
112112
}

0 commit comments

Comments
 (0)