We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a56a793 commit d97f19dCopy full SHA for d97f19d
cellpainter/cellpainter/protocol.py
@@ -93,7 +93,7 @@ class Locations:
93
B: list[str] = [f'B{i}' for i in HB]
94
95
Lid: list[str] = ['B19', 'B17']
96
- RT: list[str] = A[:21]
+ RT: list[str] = A[:21] + B[4:]
97
98
L: list[str] = [f'L{i}' for i in I]
99
R: list[str] = [f'R{i}' for i in I]
@@ -106,7 +106,7 @@ class Locations:
106
}
107
108
Out: dict[str, list[str]] = {
109
- '1 of 1': A[:21],
+ '1 of 1': A[:21] + B[4:],
110
'1 of 2': B[4:] + A[18:], # 1st batch goes to B then starts to fill remaining locations in A (with one gap)
111
'2 of 2': A[:17], # 2nd batch goes to A (up to 17 plates)
112
0 commit comments