Skip to content

Commit 2b222ee

Browse files
authored
feat(step-generation): blow_out py generation and rename to blowOutInWell (#17804)
This PR adds python generation for `blowOut` atomic command and renames `blowOut` atomic command to `blowOutInWell` since it is used only for blowing out in a well.
1 parent bc4c56f commit 2b222ee

File tree

7 files changed

+32
-20
lines changed

7 files changed

+32
-20
lines changed

step-generation/src/__tests__/blowout.test.ts step-generation/src/__tests__/blowOutInWell.test.ts

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { beforeEach, describe, it, expect, vi } from 'vitest'
22
import { expectTimelineError } from '../__utils__/testMatchers'
3-
import { blowout } from '../commandCreators/atomic/blowout'
3+
import { blowOutInWell } from '../commandCreators/atomic/blowOutInWell'
44
import {
55
makeContext,
66
getInitialRobotStateStandard,
@@ -16,7 +16,7 @@ import type { RobotState, InvariantContext } from '../types'
1616

1717
vi.mock('../utils/heaterShakerCollision')
1818

19-
describe('blowout', () => {
19+
describe('blowOutInWell', () => {
2020
let invariantContext: InvariantContext
2121
let initialRobotState: RobotState
2222
let robotStateWithTip: RobotState
@@ -39,7 +39,7 @@ describe('blowout', () => {
3939
}
4040
})
4141
it('blowout with tip', () => {
42-
const result = blowout(params, invariantContext, robotStateWithTip)
42+
const result = blowOutInWell(params, invariantContext, robotStateWithTip)
4343
const res = getSuccessResult(result)
4444
expect(res.commands).toEqual([
4545
{
@@ -59,17 +59,20 @@ describe('blowout', () => {
5959
},
6060
},
6161
])
62+
expect(res.python).toBe(
63+
'mockPythonName.blow_out(mockPythonName["A1"].top(z=-1.3))'
64+
)
6265
})
6366
it('blowout with invalid pipette ID should throw error', () => {
64-
const result = blowout(
67+
const result = blowOutInWell(
6568
{ ...params, pipetteId: 'badPipette' },
6669
invariantContext,
6770
robotStateWithTip
6871
)
6972
expectTimelineError(getErrorResult(result).errors, 'PIPETTE_DOES_NOT_EXIST')
7073
})
7174
it('blowout with invalid labware ID should throw error', () => {
72-
const result = blowout(
75+
const result = blowOutInWell(
7376
{ ...params, labwareId: 'badLabware' },
7477
invariantContext,
7578
robotStateWithTip
@@ -81,7 +84,7 @@ describe('blowout', () => {
8184
})
8285
})
8386
it('blowout with no tip should throw error', () => {
84-
const result = blowout(params, invariantContext, initialRobotState)
87+
const result = blowOutInWell(params, invariantContext, initialRobotState)
8588
const res = getErrorResult(result)
8689
expect(res.errors).toHaveLength(1)
8790
expect(res.errors[0]).toMatchObject({
@@ -92,7 +95,7 @@ describe('blowout', () => {
9295
initialRobotState = getInitialRobotStateWithOffDeckLabwareStandard(
9396
invariantContext
9497
)
95-
const result = blowout(
98+
const result = blowOutInWell(
9699
{
97100
flowRate: 10,
98101
wellLocation: {

step-generation/src/__tests__/blowoutUtil.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
SOURCE_WELL_BLOWOUT_DESTINATION,
55
DEST_WELL_BLOWOUT_DESTINATION,
66
} from '../utils'
7-
import { blowout } from '../commandCreators/atomic'
7+
import { blowOutInWell } from '../commandCreators/atomic'
88
import { blowOutInWasteChute } from '../commandCreators/compound'
99
import { curryCommandCreator } from '../utils/curryCommandCreator'
1010
import {
@@ -59,7 +59,7 @@ describe('blowoutUtil', () => {
5959
...blowoutArgs,
6060
blowoutLocation: SOURCE_WELL_BLOWOUT_DESTINATION,
6161
})
62-
expect(curryCommandCreator).toHaveBeenCalledWith(blowout, {
62+
expect(curryCommandCreator).toHaveBeenCalledWith(blowOutInWell, {
6363
pipetteId: blowoutArgs.pipette,
6464
labwareId: blowoutArgs.sourceLabwareId,
6565
wellName: blowoutArgs.sourceWell,
@@ -101,7 +101,7 @@ describe('blowoutUtil', () => {
101101
...blowoutArgs,
102102
blowoutLocation: DEST_WELL_BLOWOUT_DESTINATION,
103103
})
104-
expect(curryCommandCreator).toHaveBeenCalledWith(blowout, {
104+
expect(curryCommandCreator).toHaveBeenCalledWith(blowOutInWell, {
105105
pipetteId: blowoutArgs.pipette,
106106
labwareId: blowoutArgs.destLabwareId,
107107
wellName: blowoutArgs.destWell,
@@ -119,7 +119,7 @@ describe('blowoutUtil', () => {
119119
...blowoutArgs,
120120
blowoutLocation: TROUGH_LABWARE,
121121
})
122-
expect(curryCommandCreator).toHaveBeenCalledWith(blowout, {
122+
expect(curryCommandCreator).toHaveBeenCalledWith(blowOutInWell, {
123123
pipetteId: blowoutArgs.pipette,
124124
labwareId: TROUGH_LABWARE,
125125
wellName: 'A1',

step-generation/src/commandCreators/atomic/blowout.ts step-generation/src/commandCreators/atomic/blowOutInWell.ts

+12-3
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,26 @@ import {
1111
getIsHeaterShakerEastWestMultiChannelPipette,
1212
getIsHeaterShakerEastWestWithLatchOpen,
1313
getIsHeaterShakerNorthSouthOfNonTiprackWithMultiChannelPipette,
14+
formatPyStr,
15+
formatPyWellLocation,
1416
} from '../../utils'
1517
import { COLUMN_4_SLOTS } from '../../constants'
1618
import * as errorCreators from '../../errorCreators'
1719
import type { CreateCommand, BlowoutParams } from '@opentrons/shared-data'
1820
import type { CommandCreatorError, CommandCreator } from '../../types'
1921

20-
export const blowout: CommandCreator<BlowoutParams> = (
22+
export const blowOutInWell: CommandCreator<BlowoutParams> = (
2123
args,
2224
invariantContext,
2325
prevRobotState
2426
) => {
2527
/** Blowout with given args. Requires tip. */
2628
const { pipetteId, labwareId, wellName, wellLocation, flowRate } = args
27-
29+
const { pipetteEntities, labwareEntities } = invariantContext
30+
const pipette = pipetteEntities[pipetteId]
2831
const actionName = 'blowout'
2932
const errors: CommandCreatorError[] = []
30-
const pipetteSpec = invariantContext.pipetteEntities[pipetteId]?.spec
33+
const pipetteSpec = pipette?.spec
3134
const isFlexPipette =
3235
(pipetteSpec?.displayCategory === 'FLEX' || pipetteSpec?.channels === 96) ??
3336
false
@@ -184,6 +187,9 @@ export const blowout: CommandCreator<BlowoutParams> = (
184187
}
185188
}
186189

190+
const pipettePythonName = pipette.pythonName
191+
const labwarePythonName = labwareEntities[labwareId].pythonName
192+
187193
const commands: CreateCommand[] = [
188194
{
189195
commandType: 'blowout',
@@ -199,5 +205,8 @@ export const blowout: CommandCreator<BlowoutParams> = (
199205
]
200206
return {
201207
commands,
208+
python: `${pipettePythonName}.blow_out(${labwarePythonName}[${formatPyStr(
209+
wellName
210+
)}]${formatPyWellLocation(wellLocation)})`,
202211
}
203212
}

step-generation/src/commandCreators/atomic/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { absorbanceReaderOpenLid } from './absorbanceReaderOpenLid'
44
import { absorbanceReaderRead } from './absorbanceReaderRead'
55
import { aspirate } from './aspirate'
66
import { aspirateInPlace } from './aspirateInPlace'
7-
import { blowout } from './blowout'
7+
import { blowOutInWell } from './blowOutInWell'
88
import { blowOutInPlace } from './blowOutInPlace'
99
import { configureForVolume } from './configureForVolume'
1010
import { configureNozzleLayout } from './configureNozzleLayout'
@@ -36,7 +36,7 @@ export {
3636
absorbanceReaderRead,
3737
aspirate,
3838
aspirateInPlace,
39-
blowout,
39+
blowOutInWell,
4040
blowOutInPlace,
4141
comment,
4242
configureForVolume,

step-generation/src/commandCreators/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export {
1919
absorbanceReaderOpenLid,
2020
absorbanceReaderRead,
2121
aspirate,
22-
blowout,
22+
blowOutInWell,
2323
comment,
2424
deactivateTemperature,
2525
delay,

step-generation/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export {
66
absorbanceReaderOpenLid,
77
absorbanceReaderRead,
88
aspirate,
9-
blowout,
9+
blowOutInWell,
1010
comment,
1111
consolidate,
1212
deactivateTemperature,

step-generation/src/utils/misc.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import {
3030
blowOutInWasteChute,
3131
dispenseInWasteChute,
3232
} from '../commandCreators/compound'
33-
import { blowout } from '../commandCreators/atomic/blowout'
33+
import { blowOutInWell } from '../commandCreators/atomic/blowOutInWell'
3434
import { curryCommandCreator } from './curryCommandCreator'
3535
import type {
3636
AddressableAreaName,
@@ -365,7 +365,7 @@ export const blowoutUtil = (args: {
365365

366366
if (well != null && trashOrLabware === 'labware' && labware != null) {
367367
return [
368-
curryCommandCreator(blowout, {
368+
curryCommandCreator(blowOutInWell, {
369369
pipetteId: pipette,
370370
labwareId: labware.id,
371371
wellName: well,

0 commit comments

Comments
 (0)