Skip to content

Commit

Permalink
fix other pipette names in protocol directory
Browse files Browse the repository at this point in the history
  • Loading branch information
meh-di committed Sep 25, 2023
1 parent 2c0c505 commit 25b1827
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
def run(ctx: ProtocolContext) -> None:
"""Run."""
scale_labware = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
pipette = ctx.load_instrument("p1000_96", "left")
pipette = ctx.load_instrument("flex_96channel_1000", "left")
for tip_size in SLOTS_TIPRACK.keys():
tipracks = [
ctx.load_labware(f"opentrons_flex_96_tiprack_{tip_size}uL_adp", slot)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
def run(ctx: ProtocolContext) -> None:
"""Run."""
scale_labware = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
pipette = ctx.load_instrument("p1000_96", "left")
pipette = ctx.load_instrument("flex_96channel_1000", "left")
for tip_size in SLOTS_TIPRACK.keys():
tipracks = [
ctx.load_labware(f"opentrons_flex_96_tiprack_{tip_size}uL_adp", slot)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def run(ctx: ProtocolContext) -> None:
for slot in slots
]
scale_labware = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
pipette = ctx.load_instrument("p1000_96", "left")
pipette = ctx.load_instrument("flex_96channel_1000", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, scale_labware["A1"].top())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def run(ctx: ProtocolContext) -> None:
for slot in slots
]
scale_labware = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
pipette = ctx.load_instrument("p1000_96", "left")
pipette = ctx.load_instrument("flex_96channel_1000", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, scale_labware["A1"].top())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def run(ctx: ProtocolContext) -> None:
for slot in slots
]
scale_labware = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
pipette = ctx.load_instrument("p1000_96", "left")
pipette = ctx.load_instrument("flex_96channel_1000", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, scale_labware["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_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

0 comments on commit 25b1827

Please sign in to comment.