-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds seperate protocol for 96ch 200ul tip tests
- Loading branch information
1 parent
f6223c5
commit 42ca4c5
Showing
3 changed files
with
57 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
hardware-testing/hardware_testing/protocols/photometric_ot3_p1000_96_200ul.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
"""Photometric OT3 P1000.""" | ||
from opentrons.protocol_api import ProtocolContext | ||
|
||
metadata = {"protocolName": "photometric-ot3-p1000-96-50ul-tip"} | ||
requirements = {"robotType": "Flex", "apiLevel": "2.15"} | ||
|
||
SLOTS_TIPRACK = { | ||
200: [5, 6, 8, 9, 11], | ||
} | ||
SLOT_PLATE = 3 | ||
SLOT_RESERVOIR = 2 | ||
|
||
RESERVOIR_LABWARE = "nest_1_reservoir_195ml" | ||
PHOTOPLATE_LABWARE = "corning_96_wellplate_360ul_flat" | ||
|
||
|
||
def run(ctx: ProtocolContext) -> None: | ||
"""Run.""" | ||
tipracks = [ | ||
# FIXME: use official tip-racks once available | ||
ctx.load_labware( | ||
f"opentrons_flex_96_tiprack_{size}uL_adp", slot, namespace="custom_beta" | ||
) | ||
for size, slots in SLOTS_TIPRACK.items() | ||
for slot in slots | ||
] | ||
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR) | ||
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE) | ||
pipette = ctx.load_instrument("p1000_96", "left") | ||
for rack in tipracks: | ||
pipette.pick_up_tip(rack["A1"]) | ||
pipette.aspirate(10, reservoir["A1"].top()) | ||
pipette.dispense(10, plate["A1"].top()) | ||
pipette.drop_tip(home_after=False) |
File renamed without changes.