Skip to content

Commit

Permalink
fix(hardware-testing): Change 96ch pipette name in photometric calibr…
Browse files Browse the repository at this point in the history
…ation protocols (#13620)
  • Loading branch information
meh-di authored Feb 12, 2024
1 parent bb32772 commit c142da1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(ctx: ProtocolContext) -> None:
]
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR)
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE)
pipette = ctx.load_instrument("p1000_multi_gen3", "left")
pipette = ctx.load_instrument("flex_8channel_1000", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, reservoir["A1"].top())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(ctx: ProtocolContext) -> None:
]
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR)
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE)
pipette = ctx.load_instrument("p1000_single_gen3", "left")
pipette = ctx.load_instrument("flex_1channel_1000", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, reservoir["A1"].top())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def run(ctx: ProtocolContext) -> None:
]
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR)
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE)
pipette = ctx.load_instrument("p50_multi_gen3", "left")
pipette = ctx.load_instrument("flex_8channel_50", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, reservoir["A1"].top())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def run(ctx: ProtocolContext) -> None:
]
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR)
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE)
pipette = ctx.load_instrument("p50_single_gen3", "left")
pipette = ctx.load_instrument("flex_1channel_50", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, reservoir["A1"].top())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def run(ctx: ProtocolContext) -> None:
# diluent tips, pipette, and reservoir
if _get_diluent_volume():
diluent_tips = ctx.load_labware("opentrons_flex_96_tiprack_200uL", "B3")
if "p1000_multi" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
if "8channel_1000" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
diluent_pipette = dye_pipette # share the 8ch pipette
else:
diluent_pipette = ctx.load_instrument("flex_8channel_1000", "right")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def run(ctx: ProtocolContext) -> None:
# diluent tips, pipette, and reservoir
if _get_diluent_volume():
diluent_tips = ctx.load_labware("opentrons_flex_96_tiprack_200uL", "B3")
if "p1000_multi" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
if "8channel_1000" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
diluent_pipette = dye_pipette # share the 8ch pipette
else:
diluent_pipette = ctx.load_instrument("flex_8channel_1000", "right")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def run(ctx: ProtocolContext) -> None:
# diluent tips, pipette, and reservoir
if _get_diluent_volume():
diluent_tips = ctx.load_labware("opentrons_flex_96_tiprack_200uL", "B3")
if "p1000_multi" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
if "8channel_1000" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
diluent_pipette = dye_pipette # share the 8ch pipette
else:
diluent_pipette = ctx.load_instrument("flex_8channel_1000", "right")
Expand Down

0 comments on commit c142da1

Please sign in to comment.