Skip to content

Commit

Permalink
Remove evotips from quick transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
smb2268 committed Feb 6, 2025
1 parent 2b2cc05 commit d75159f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 0 additions & 3 deletions app/src/organisms/ODD/QuickTransferFlow/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1',
'opentrons/usascientific_12_reservoir_22ml/1',
'opentrons/usascientific_96_wellplate_2.4ml_deep/1',
'opentrons/evotips_opentrons_96_labware/1',
]

export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
Expand Down Expand Up @@ -145,7 +144,6 @@ export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1',
'opentrons/usascientific_12_reservoir_22ml/1',
'opentrons/usascientific_96_wellplate_2.4ml_deep/1',
'opentrons/evotips_opentrons_96_labware/1',
]

export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
Expand Down Expand Up @@ -190,5 +188,4 @@ export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1',
'opentrons/usascientific_12_reservoir_22ml/1',
'opentrons/usascientific_96_wellplate_2.4ml_deep/1',
'opentrons/evotips_opentrons_96_labware/1',
]
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
import { getAllDefinitions } from '@opentrons/shared-data'
import {
getAllDefinitions,
LABWAREV2_DO_NOT_LIST,
} from '@opentrons/shared-data'
import {
SINGLE_CHANNEL_COMPATIBLE_LABWARE,
EIGHT_CHANNEL_COMPATIBLE_LABWARE,
NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE,
} from '../constants'

import type { LabwareDefinition2 } from '@opentrons/shared-data'
import type { LabwareFilter } from '/app/local-resources/labware'

export function getCompatibleLabwareByCategory(
pipetteChannels: 1 | 8 | 96,
category: LabwareFilter
): LabwareDefinition2[] | undefined {
const allLabwareDefinitions = getAllDefinitions()
const allLabwareDefinitions = getAllDefinitions(LABWAREV2_DO_NOT_LIST)
console.log(allLabwareDefinitions)
let compatibleLabwareUris: string[] = SINGLE_CHANNEL_COMPATIBLE_LABWARE
if (pipetteChannels === 8) {
compatibleLabwareUris = EIGHT_CHANNEL_COMPATIBLE_LABWARE
Expand Down

0 comments on commit d75159f

Please sign in to comment.