File tree 3 files changed +11
-5
lines changed
app/src/organisms/ODD/QuickTransferFlow
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,6 @@ export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [
100
100
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1' ,
101
101
'opentrons/usascientific_12_reservoir_22ml/1' ,
102
102
'opentrons/usascientific_96_wellplate_2.4ml_deep/1' ,
103
- 'opentrons/evotips_opentrons_96_labware/1' ,
104
103
]
105
104
106
105
export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
@@ -145,7 +144,6 @@ export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
145
144
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1' ,
146
145
'opentrons/usascientific_12_reservoir_22ml/1' ,
147
146
'opentrons/usascientific_96_wellplate_2.4ml_deep/1' ,
148
- 'opentrons/evotips_opentrons_96_labware/1' ,
149
147
]
150
148
151
149
export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
@@ -190,5 +188,4 @@ export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
190
188
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1' ,
191
189
'opentrons/usascientific_12_reservoir_22ml/1' ,
192
190
'opentrons/usascientific_96_wellplate_2.4ml_deep/1' ,
193
- 'opentrons/evotips_opentrons_96_labware/1' ,
194
191
]
Original file line number Diff line number Diff line change 1
- import { getAllDefinitions } from '@opentrons/shared-data'
1
+ import {
2
+ getAllDefinitions ,
3
+ LABWAREV2_DO_NOT_LIST ,
4
+ } from '@opentrons/shared-data'
2
5
import {
3
6
SINGLE_CHANNEL_COMPATIBLE_LABWARE ,
4
7
EIGHT_CHANNEL_COMPATIBLE_LABWARE ,
@@ -12,7 +15,7 @@ export function getCompatibleLabwareByCategory(
12
15
pipetteChannels : 1 | 8 | 96 ,
13
16
category : LabwareFilter
14
17
) : LabwareDefinition2 [ ] | undefined {
15
- const allLabwareDefinitions = getAllDefinitions ( )
18
+ const allLabwareDefinitions = getAllDefinitions ( LABWAREV2_DO_NOT_LIST )
16
19
let compatibleLabwareUris : string [ ] = SINGLE_CHANNEL_COMPATIBLE_LABWARE
17
20
if ( pipetteChannels === 8 ) {
18
21
compatibleLabwareUris = EIGHT_CHANNEL_COMPATIBLE_LABWARE
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ export const LABWAREV2_DO_NOT_LIST = [
44
44
'opentrons_ot3_96_tiprack_1000ul' ,
45
45
'opentrons_ot3_96_tiprack_50ul' ,
46
46
'opentrons_flex_lid_absorbance_plate_reader_module' ,
47
+ // temporarily blocking evotips until it is out of beta
48
+ 'evotips_flex_96_tiprack_adapter' ,
49
+ 'evotips_opentrons_96_labware' ,
47
50
]
48
51
// NOTE(sa, 2020-7-14): in PD we do not want to list calibration blocks
49
52
// or the adapter/labware combos since we migrated to splitting them up
@@ -60,6 +63,9 @@ export const PD_DO_NOT_LIST = [
60
63
// temporarily blocking TC lid adapter and deck riser until it is supported in PD
61
64
'opentrons_tough_pcr_auto_sealing_lid' ,
62
65
'opentrons_flex_deck_riser' ,
66
+ // temporarily blocking evotips until it is supported in PD
67
+ 'evotips_flex_96_tiprack_adapter' ,
68
+ 'evotips_opentrons_96_labware' ,
63
69
]
64
70
65
71
export function getIsLabwareV1Tiprack ( def : LabwareDefinition1 ) : boolean {
You can’t perform that action at this time.
0 commit comments