Skip to content

Commit

Permalink
feat(shared-data): aluminum block split adapter definition (#13209)
Browse files Browse the repository at this point in the history
added aluminum block adapter and overlaps for nest and biorad pcr plates
  • Loading branch information
jbleon95 authored Aug 1, 2023
1 parent 914c567 commit 015f744
Show file tree
Hide file tree
Showing 7 changed files with 2,059 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
# Default versions of Opentrons standard labware definitions in Python Protocol API
# v2.14 and above. Labware not explicitly listed here default to 1.
#
# This will need to be extended t
# TODO(jbl 2023-08-01) this needs to be done more holistically, both to find the version and make sure that
# it corresponds to the API level is was released with
_APILEVEL_2_14_OT_DEFAULT_VERSIONS: Dict[str, int] = {
# v1 of many labware definitions have wrong `zDimension`s. (Jira RSS-202.)
# For "opentrons_96_aluminumblock_generic_pcr_strip_200ul" and
Expand All @@ -22,6 +23,8 @@
"nest_96_wellplate_100ul_pcr_full_skirt": 2,
"nest_96_wellplate_200ul_flat": 2,
"nest_96_wellplate_2ml_deep": 2,
"opentrons_96_wellplate_200ul_pcr_full_skirt": 2,
"biorad_96_wellplate_200ul_pcr": 2,
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ def test_resolve_load_labware_params(
"nest_96_wellplate_100ul_pcr_full_skirt",
"nest_96_wellplate_200ul_flat",
"nest_96_wellplate_2ml_deep",
"opentrons_96_wellplate_200ul_pcr_full_skirt",
"biorad_96_wellplate_200ul_pcr",
],
)
@pytest.mark.parametrize("namespace", [OPENTRONS_NAMESPACE, None])
Expand Down
3 changes: 2 additions & 1 deletion protocol-designer/fixtures/protocol/7/doItAllV7.json
Original file line number Diff line number Diff line change
Expand Up @@ -2369,7 +2369,8 @@
"schemaVersion": 2,
"cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 },
"stackingOffsetWithLabware": {
"opentrons_96_pcr_adapter": { "x": 0, "y": 0, "z": 10.2 }
"opentrons_96_pcr_adapter": { "x": 0, "y": 0, "z": 10.2 },
"opentrons_96_well_aluminum_block": { "x": 0, "y": 0, "z": 12.66 }
}
},
"opentrons/opentrons_24_aluminumblock_nest_1.5ml_snapcap/1": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ stages:
slotName: '1'
loadName: biorad_96_wellplate_200ul_pcr
namespace: opentrons
version: 1
version: 2
- id: !anystr
key: !anystr
commandType: loadModule
Expand Down
Loading

0 comments on commit 015f744

Please sign in to comment.