Skip to content

Commit

Permalink
Updated return_tip to drop_tip
Browse files Browse the repository at this point in the history
Comments said that the two code snippet accomplished the same thing. The first (p300.transfer(100, plate['A1'], plate['B1'])) would drop the tip in the trash while the second   

p300.pick_up_tip()
p300.aspirate(100, plate.wells('A1'))
p300.dispense(100, plate.wells('B1'))
p300.return_tip()

would return the tip to the tiprack. I changed return_tip in the second example to drop_tip so the two commands would be identical.
  • Loading branch information
ethanfjones-zz authored May 25, 2021
1 parent 586744c commit cca6a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/docs/v2/new_examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ This accomplishes the same thing as the following basic commands:
p300.pick_up_tip()
p300.aspirate(100, plate.wells('A1'))
p300.dispense(100, plate.wells('B1'))
p300.return_tip()
p300.drop_tip()
******************************

Expand Down

0 comments on commit cca6a04

Please sign in to comment.