-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactor: Cleanup for Digital Discovery Paper * testing resetting with errors * Fix: reset state on reconnect --------- Co-authored-by: Dozgulbas <[email protected]>
- Loading branch information
1 parent
33bb20a
commit 893f1e3
Showing
20 changed files
with
614 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Test descriptions, I am in the `ot2_driver.__init__`""" | ||
|
||
__version__ = "0.0.1a1" | ||
__version__ = "0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
from opentrons import protocol_api | ||
|
||
|
||
metadata = { | ||
"protocolName": "Color Mixing all", | ||
"author": "Kyle [email protected]", | ||
"description": "Mixing red colors", | ||
"apiLevel": "2.12" | ||
"apiLevel": "2.12", | ||
} | ||
|
||
def run(protocol: protocol_api.ProtocolContext): | ||
|
||
def run(protocol: protocol_api.ProtocolContext): | ||
deck = {} | ||
pipettes = {} | ||
|
||
|
@@ -20,8 +19,12 @@ def run(protocol: protocol_api.ProtocolContext): | |
deck["7"] = protocol.load_labware("opentrons_6_tuberack_nest_50ml_conical", "7") | ||
deck["10"] = protocol.load_labware("opentrons_96_tiprack_300ul", "10") | ||
deck["11"] = protocol.load_labware("opentrons_96_tiprack_20ul", "11") | ||
pipettes["left"] = protocol.load_instrument("p300_single_gen2", "left", tip_racks=[deck["10"]]) | ||
pipettes["right"] = protocol.load_instrument("p20_single_gen2", "right", tip_racks=[deck["11"]]) | ||
pipettes["left"] = protocol.load_instrument( | ||
"p300_single_gen2", "left", tip_racks=[deck["10"]] | ||
) | ||
pipettes["right"] = protocol.load_instrument( | ||
"p20_single_gen2", "right", tip_racks=[deck["11"]] | ||
) | ||
|
||
#################### | ||
# execute commands # | ||
|
@@ -60,7 +63,6 @@ def run(protocol: protocol_api.ProtocolContext): | |
pipettes["left"].blow_out() | ||
pipettes["left"].drop_tip() | ||
|
||
|
||
# Mix color 2 | ||
pipettes["left"].pick_up_tip(deck["10"].wells()[3]) | ||
pipettes["left"].well_bottom_clearance.aspirate = 1.0 | ||
|
@@ -94,7 +96,6 @@ def run(protocol: protocol_api.ProtocolContext): | |
pipettes["right"].blow_out() | ||
pipettes["right"].drop_tip() | ||
|
||
|
||
# Mix color 3 | ||
pipettes["right"].pick_up_tip(deck["11"].wells()[2]) | ||
pipettes["right"].well_bottom_clearance.aspirate = 1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.