Skip to content

Commit

Permalink
fix the lpc protocols for LLD
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Mar 13, 2024
1 parent 6b5e16b commit 2cc68e7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,13 @@ def run(ctx: ProtocolContext) -> None:
if size == 50 # only calibrate 50ul tip-racks
]
scale_labware = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
dial = ctx.load_labware("dial_indicator", SLOT_DIAL, namespace="custom_beta")
pipette = ctx.load_instrument("p1000_96", "left")
dial = ctx.load_labware("dial_indicator", SLOT_DIAL, namespace="custom_beta")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, scale_labware["A1"].top())
pipette.dispense(10, scale_labware["A1"].top())
pipette.aspirate(1, dial["A1"].top())
pipette.dispense(1, dial["A1"].top())
pipette.drop_tip(home_after=False)
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ def run(ctx: ProtocolContext) -> None:
]
vial = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
pipette = ctx.load_instrument("flex_8channel_1000", "left")
dial = ctx.load_labware("dial_indicator", SLOT_DIAL, namespace="custom_beta")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, vial["A1"].top())
pipette.dispense(10, vial["A1"].top())
pipette.aspirate(1, dial["A1"].top())
pipette.dispense(1, dial["A1"].top())
pipette.drop_tip(home_after=False)
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
200: [6],
1000: [9],
}
LABWARE_ON_SCALE = "nest_1_reservoir_195ml"
LABWARE_ON_SCALE = "radwag_pipette_calibration_vial"


def run(ctx: ProtocolContext) -> None:
Expand All @@ -21,8 +21,8 @@ def run(ctx: ProtocolContext) -> None:
for size, slots in SLOTS_TIPRACK.items()
for slot in slots
]
vial = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
dial = ctx.load_labware("dial_indicator", SLOT_DIAL)
vial = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE, namespace="custom_beta")
dial = ctx.load_labware("dial_indicator", SLOT_DIAL, namespace="custom_beta")
pipette = ctx.load_instrument("flex_1channel_1000", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ def run(ctx: ProtocolContext) -> None:
]
vial = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
pipette = ctx.load_instrument("flex_8channel_50", "left")
dial = ctx.load_labware("dial_indicator", SLOT_DIAL, namespace="custom_beta")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(pipette.min_volume, vial["A1"].top())
pipette.dispense(pipette.min_volume, vial["A1"].top())
pipette.aspirate(1, dial["A1"].top())
pipette.dispense(1, dial["A1"].top())
pipette.drop_tip(home_after=False)
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def run(ctx: ProtocolContext) -> None:
for size, slots in SLOTS_TIPRACK.items()
for slot in slots
]
vial = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
dial = ctx.load_labware("dial_indicator", SLOT_DIAL)
vial = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE, namespace="custom_beta")
dial = ctx.load_labware("dial_indicator", SLOT_DIAL, namespace="custom_beta")
pipette = ctx.load_instrument("flex_1channel_50", "left")
for rack in tipracks:
pipette.pick_up_tip(rack["A1"])
Expand Down

0 comments on commit 2cc68e7

Please sign in to comment.