Skip to content

Commit

Permalink
abr10 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rclarke0 committed Dec 6, 2024
1 parent 57a59b6 commit 0bc81f6
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,7 @@ def run(ctx: protocol_api.ProtocolContext) -> None:
"Samples": [{"well": samps, "volume": 0.0}],
"Reagents": [{"well": res2.wells(), "volume": 9000.0}],
}
flattened_list_of_wells = helpers.find_liquid_height_of_loaded_liquids(
ctx, liquid_vols_and_wells, m1000
)
helpers.find_liquid_height_of_loaded_liquids(ctx, liquid_vols_and_wells, m1000)

m1000.flow_rate.aspirate = 300
m1000.flow_rate.dispense = 300
Expand Down Expand Up @@ -532,5 +530,7 @@ def elute(vol: float) -> None:
)
elute(elution_vol)
h_s.deactivate_heater()
flattened_list_of_wells.extend([waste_reservoir["A1"], elutionplate["A1"]])
helpers.find_liquid_height_of_all_wells(ctx, m1000, flattened_list_of_wells)
helpers.clean_up_plates(
m1000, [elutionplate, sample_plate, res1, res2], waste_reservoir["A1"], 1000
)
helpers.find_liquid_height_of_all_wells(ctx, m1000, [waste_reservoir["A1"]])

0 comments on commit 0bc81f6

Please sign in to comment.