|
70 | 70 |
|
71 | 71 | GRAVIMETRIC_CFG_INCREMENT = {
|
72 | 72 | 50: {
|
73 |
| - 1: {50: gravimetric_ot3_p50_single}, |
| 73 | + 1: {20: gravimetric_ot3_p50_single, 50: gravimetric_ot3_p50_single}, |
74 | 74 | 8: {50: gravimetric_ot3_p50_multi_50ul_tip_increment},
|
75 | 75 | },
|
76 | 76 | 200: {
|
77 | 77 | 96: {
|
| 78 | + 20: gravimetric_ot3_p200_96, |
78 | 79 | 50: gravimetric_ot3_p200_96,
|
79 | 80 | 200: gravimetric_ot3_p200_96,
|
80 | 81 | },
|
|
117 | 118 | PHOTOMETRIC_CFG = {
|
118 | 119 | 50: {
|
119 | 120 | 1: {
|
| 121 | + 20: photometric_ot3_p50_single, |
120 | 122 | 50: photometric_ot3_p50_single,
|
121 | 123 | },
|
122 | 124 | 8: {
|
123 | 125 | 50: photometric_ot3_p50_multi,
|
124 | 126 | },
|
125 | 127 | },
|
126 | 128 | 200: {
|
127 |
| - 96: {50: photometric_ot3_p200_96, 200: photometric_ot3_p200_96}, |
| 129 | + 96: { |
| 130 | + 20: photometric_ot3_p200_96, |
| 131 | + 50: photometric_ot3_p200_96, |
| 132 | + 200: photometric_ot3_p200_96, |
| 133 | + }, |
128 | 134 | },
|
129 | 135 | 1000: {
|
130 | 136 | 1: {
|
|
137 | 143 | 200: photometric_ot3_p1000_multi,
|
138 | 144 | 1000: photometric_ot3_p1000_multi,
|
139 | 145 | },
|
140 |
| - 96: {50: photometric_ot3_p1000_96, 200: photometric_ot3_p1000_96}, |
| 146 | + 96: { |
| 147 | + 20: photometric_ot3_p1000_96, |
| 148 | + 50: photometric_ot3_p1000_96, |
| 149 | + 200: photometric_ot3_p1000_96, |
| 150 | + }, |
141 | 151 | },
|
142 | 152 | }
|
143 | 153 |
|
@@ -177,11 +187,11 @@ def _get_protocol_context(cls, args: argparse.Namespace) -> ProtocolContext:
|
177 | 187 | "Starting opentrons-robot-server, so we can http GET labware offsets"
|
178 | 188 | )
|
179 | 189 | LABWARE_OFFSETS.extend(workarounds.http_get_all_labware_offsets())
|
180 |
| - ui.print_info(f"found {len(LABWARE_OFFSETS)} offsets:") |
181 |
| - for offset in LABWARE_OFFSETS: |
182 |
| - ui.print_info(f"\t{offset.createdAt}:") |
183 |
| - ui.print_info(f"\t\t{offset.definitionUri}") |
184 |
| - ui.print_info(f"\t\t{offset.vector}") |
| 190 | + # ui.print_info(f"found {len(LABWARE_OFFSETS)} offsets:") |
| 191 | + # for offset in LABWARE_OFFSETS: |
| 192 | + # ui.print_info(f"\t{offset.createdAt}:") |
| 193 | + # ui.print_info(f"\t\t{offset.definitionUri}") |
| 194 | + # ui.print_info(f"\t\t{offset.vector}") |
185 | 195 | # gather the custom labware (for simulation)
|
186 | 196 | custom_defs = {}
|
187 | 197 | if args.simulate:
|
@@ -572,7 +582,7 @@ def _main(
|
572 | 582 | parser.add_argument("--simulate", action="store_true")
|
573 | 583 | parser.add_argument("--pipette", type=int, choices=[50, 200, 1000], required=True)
|
574 | 584 | parser.add_argument("--channels", type=int, choices=[1, 8, 96], default=1)
|
575 |
| - parser.add_argument("--tip", type=int, choices=[0, 50, 200, 1000], default=0) |
| 585 | + parser.add_argument("--tip", type=int, choices=[0, 20, 50, 200, 1000], default=0) |
576 | 586 | parser.add_argument("--trials", type=int, default=0)
|
577 | 587 | parser.add_argument("--increment", action="store_true")
|
578 | 588 | parser.add_argument("--return-tip", action="store_true")
|
|
0 commit comments