Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
“ramifarawi” committed Nov 27, 2023
1 parent 329077a commit b898a2c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
14 changes: 10 additions & 4 deletions protocols/010d6c/010d6c.ot2.apiv2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
def get_values(*names):
import json
_all_values = json.loads("""{"csv_samp":"source slot,source well,dest well\\n8,A1,A4\\n8,A1,A5","plate_standard":true,"diluent_buff_col":1,"duplicate_plating":true,"m300_mount":"left","p300_mount":"right"}""")
return [_all_values[n] for n in names]


# flake8: noqa

metadata = {
Expand Down Expand Up @@ -139,7 +145,7 @@ def Transfer_With_TT(Pipette, Source, Destination, Vol, Dispense_Top):
calibration_vols = [1000, 750, 500, 250, 100, 50, 20, 0]

p300.pick_up_tip() # Moved to outside of loop
p300.mix(1, 300, calibration_solution) # Moved to outside of loop
p300.mix(1, 300, calibration_solution.bottom(z=4)) # Moved to outside of loop

for vol, well in zip(calibration_vols, diluent_buff_col):
if vol == 0:
Expand Down Expand Up @@ -249,7 +255,7 @@ def Transfer_With_TT(Pipette, Source, Destination, Vol, Dispense_Top):
for well in dispense_wells:
m300.dispense(50, well.top())
ctx.delay(seconds = 1)
m300.move_to(well.top(z = -3))
m300.move_to(well.top(z = 0))
m300.touch_tip()
ctx.delay(seconds = 1)

Expand All @@ -263,7 +269,7 @@ def Transfer_With_TT(Pipette, Source, Destination, Vol, Dispense_Top):
for well in dispense_wells:
m300.dispense(50, well.top())
ctx.delay(seconds = 1)
m300.move_to(well.top(z = -3))
m300.move_to(well.top(z = 0))
m300.touch_tip()
ctx.delay(seconds = 1)

Expand All @@ -290,7 +296,7 @@ def Transfer_With_TT(Pipette, Source, Destination, Vol, Dispense_Top):
for well in wells:
m300.dispense(100, well.top())
ctx.delay(seconds = 1)
m300.move_to(well.top(z = -3))
m300.move_to(well.top(z = 0))
m300.touch_tip()
ctx.delay(seconds = 1)

Expand Down
2 changes: 1 addition & 1 deletion protocols/010d6c/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This protocol performs a Ribrogreen assay - for detailed protocol steps, please


### Deck Setup
![deck](https://opentrons-protocol-library-website.s3.amazonaws.com/custom-README-images/010d6c/ddddd.png)
![deck](https://opentrons-protocol-library-website.s3.amazonaws.com/custom-README-images/010d6c/Screen+Shot+2023-11-27+at+1.39.18+PM.png)


### Reagent Setup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,8 @@ def pick_up_less():

if transfer_vol <= 0:
continue

p20.aspirate(transfer_vol, water)
p20.dispense(transfer_vol, dest_well.bottom(z=1.5))
p20.transfer(transfer_vol, water, dest_well.bottom(z=1.5),
new_tip='never')
p20.blow_out()

p20.drop_tip()
Expand Down

0 comments on commit b898a2c

Please sign in to comment.