Skip to content

Commit 3d3bf5f

Browse files
authored
feat(app,protocol-designer): expose tough reservoirs (#19142)
This is ready to ship! The lids aren't though. Closes EXEC-1670
1 parent 4a6a721 commit 3d3bf5f

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

app/src/organisms/ODD/QuickTransferFlow/constants.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [
116116
'opentrons/opentrons_flex_96_tiprack_1000ul/1',
117117
'opentrons/opentrons_flex_96_tiprack_200ul/1',
118118
'opentrons/opentrons_flex_96_tiprack_50ul/1',
119+
'opentrons/opentrons_tough_12_reservoir_22ml/1',
120+
'opentrons/opentrons_tough_1_reservoir_300ml/1',
121+
'opentrons/opentrons_tough_4_reservoir_72ml/1',
119122
'opentrons/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/1',
120123
'opentrons/smc_384_read_plate/2',
121124
'opentrons/thermoscientificnunc_96_wellplate_1300ul/3',
@@ -167,6 +170,9 @@ export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
167170
'opentrons/opentrons_flex_96_tiprack_1000ul/1',
168171
'opentrons/opentrons_flex_96_tiprack_200ul/1',
169172
'opentrons/opentrons_flex_96_tiprack_50ul/1',
173+
'opentrons/opentrons_tough_12_reservoir_22ml/1',
174+
'opentrons/opentrons_tough_1_reservoir_300ml/1',
175+
'opentrons/opentrons_tough_4_reservoir_72ml/1',
170176
'opentrons/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/1',
171177
'opentrons/smc_384_read_plate/2',
172178
'opentrons/thermoscientificnunc_96_wellplate_1300ul/3',
@@ -218,6 +224,9 @@ export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
218224
'opentrons/opentrons_flex_96_tiprack_1000ul/1',
219225
'opentrons/opentrons_flex_96_tiprack_200ul/1',
220226
'opentrons/opentrons_flex_96_tiprack_50ul/1',
227+
'opentrons/opentrons_tough_12_reservoir_22ml/1',
228+
'opentrons/opentrons_tough_1_reservoir_300ml/1',
229+
'opentrons/opentrons_tough_4_reservoir_72ml/1',
221230
'opentrons/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/1',
222231
'opentrons/smc_384_read_plate/2',
223232
'opentrons/thermoscientificnunc_96_wellplate_1300ul/3',

shared-data/js/getLabware.ts

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,7 @@ export const LABWAREV2_DO_NOT_LIST = [
4848
// temporarily blocking 20 uL Flex tip racks until they launch
4949
'opentrons_flex_96_tiprack_20ul',
5050
'opentrons_flex_96_filtertiprack_20ul',
51-
// temporarily blocking tough labware until geometry and collateral is finalized
52-
'opentrons_tough_1_reservoir_300ml',
53-
'opentrons_tough_4_reservoir_72ml',
54-
'opentrons_tough_12_reservoir_22ml',
51+
// temporarily blocking tough lids until geometry and collateral is finalized
5552
'opentrons_tough_universal_lid',
5653
]
5754
// NOTE(sa, 2020-7-14): in PD we do not want to list calibration blocks
@@ -75,10 +72,8 @@ export const PD_DO_NOT_LIST = [
7572
// temporarily blocking 20 uL Flex tip racks until they launch
7673
'opentrons_flex_96_tiprack_20ul',
7774
'opentrons_flex_96_filtertiprack_20ul',
78-
// temporarily blocking tough labware until geometry and collateral is finalized
79-
'opentrons_tough_1_reservoir_300ml',
80-
'opentrons_tough_4_reservoir_72ml',
81-
'opentrons_tough_12_reservoir_22ml',
75+
// temporarily blocking tough lids until geometry and collateral is finalized
76+
'opentrons_tough_universal_lid',
8277
]
8378

8479
export function getIsLabwareV1Tiprack(def: LabwareDefinition1): boolean {

0 commit comments

Comments
 (0)