-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'edge' into abr-jira-fixes
- Loading branch information
Showing
678 changed files
with
25,477 additions
and
5,084 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
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
|
||
requirements = { | ||
"robotType": "OT-3", | ||
"apiLevel": "2.20", | ||
"apiLevel": "2.21", | ||
} | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
"author": "Your Name <[email protected]>", | ||
} | ||
|
||
requirements = {"robotType": "Flex", "apiLevel": "2.20"} | ||
requirements = {"robotType": "Flex", "apiLevel": "2.21"} | ||
|
||
tt_50 = 0 | ||
tt_200 = 0 | ||
|
@@ -50,6 +50,7 @@ def add_parameters(parameters: ParameterContext) -> None: | |
default=False, | ||
) | ||
helpers.create_disposable_lid_parameter(parameters) | ||
helpers.create_tc_lid_deck_riser_parameter(parameters) | ||
helpers.create_two_pipette_mount_parameters(parameters) | ||
parameters.add_int( | ||
variable_name="num_samples", | ||
|
@@ -85,6 +86,7 @@ def run(ctx: ProtocolContext) -> None: | |
dry_run = ctx.params.dry_run # type: ignore[attr-defined] | ||
pipette_1000_mount = ctx.params.pipette_mount_1 # type: ignore[attr-defined] | ||
pipette_50_mount = ctx.params.pipette_mount_2 # type: ignore[attr-defined] | ||
deck_riser = ctx.params.deck_riser # type: ignore[attr-defined] | ||
REUSE_ETOH_TIPS = True | ||
REUSE_RSB_TIPS = ( | ||
True # Reuse tips for RSB buffer (adding RSB, mixing, and transferring) | ||
|
@@ -158,7 +160,7 @@ def run(ctx: ProtocolContext) -> None: | |
unused_lids: List[Labware] = [] | ||
# Load TC Lids | ||
if disposable_lid: | ||
unused_lids = helpers.load_disposable_lids(ctx, 5, ["C3"]) | ||
unused_lids = helpers.load_disposable_lids(ctx, 5, ["C3"], deck_riser) | ||
# Import Global Variables | ||
|
||
global tip50 | ||
|
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 |
---|---|---|
|
@@ -14,21 +14,24 @@ | |
"protocolName": "PCR Protocol with TC Auto Sealing Lid", | ||
"author": "Rami Farawi <[email protected]", | ||
} | ||
requirements = {"robotType": "OT-3", "apiLevel": "2.20"} | ||
requirements = {"robotType": "OT-3", "apiLevel": "2.21"} | ||
|
||
|
||
def add_parameters(parameters: ParameterContext) -> None: | ||
"""Parameters.""" | ||
helpers.create_single_pipette_mount_parameter(parameters) | ||
helpers.create_disposable_lid_parameter(parameters) | ||
helpers.create_csv_parameter(parameters) | ||
helpers.create_tc_lid_deck_riser_parameter(parameters) | ||
|
||
|
||
def run(ctx: ProtocolContext) -> None: | ||
"""Protocol.""" | ||
pipette_mount = ctx.params.pipette_mount # type: ignore[attr-defined] | ||
disposable_lid = ctx.params.disposable_lid # type: ignore[attr-defined] | ||
parsed_csv = ctx.params.parameters_csv.parse_as_csv() # type: ignore[attr-defined] | ||
deck_riser = ctx.params.deck_riser # type: ignore[attr-defined] | ||
|
||
rxn_vol = 50 | ||
real_mode = True | ||
# DECK SETUP AND LABWARE | ||
|
@@ -60,7 +63,7 @@ def run(ctx: ProtocolContext) -> None: | |
|
||
# Opentrons tough pcr auto sealing lids | ||
if disposable_lid: | ||
unused_lids = helpers.load_disposable_lids(ctx, 3, ["C3"]) | ||
unused_lids = helpers.load_disposable_lids(ctx, 3, ["C3"], deck_riser) | ||
used_lids: List[Labware] = [] | ||
|
||
# LOAD PIPETTES | ||
|
@@ -205,4 +208,6 @@ def run(ctx: ProtocolContext) -> None: | |
ctx.move_labware(lid_on_plate, "C2", use_gripper=True) | ||
else: | ||
ctx.move_labware(lid_on_plate, used_lids[-2], use_gripper=True) | ||
p50.drop_tip() | ||
p50.configure_nozzle_layout(style=SINGLE, start="A1", tip_racks=tiprack_50) | ||
helpers.find_liquid_height_of_all_wells(ctx, p50, wells_to_probe_flattened) |
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
2 changes: 0 additions & 2 deletions
2
abr-testing/abr_testing/protocols/csv_parameters/9_parameters.csv
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.