opentrons 8.5.0a8__py2.py3-none-any.whl → 8.5.0a9__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of opentrons might be problematic. Click here for more details.
- opentrons/protocol_api/core/engine/instrument.py +7 -7
- opentrons/protocol_api/core/engine/transfer_components_executor.py +5 -3
- {opentrons-8.5.0a8.dist-info → opentrons-8.5.0a9.dist-info}/METADATA +4 -4
- {opentrons-8.5.0a8.dist-info → opentrons-8.5.0a9.dist-info}/RECORD +8 -8
- {opentrons-8.5.0a8.dist-info → opentrons-8.5.0a9.dist-info}/LICENSE +0 -0
- {opentrons-8.5.0a8.dist-info → opentrons-8.5.0a9.dist-info}/WHEEL +0 -0
- {opentrons-8.5.0a8.dist-info → opentrons-8.5.0a9.dist-info}/entry_points.txt +0 -0
- {opentrons-8.5.0a8.dist-info → opentrons-8.5.0a9.dist-info}/top_level.txt +0 -0
|
@@ -1698,15 +1698,15 @@ class InstrumentCore(AbstractInstrument[WellCore, LabwareCore]):
|
|
|
1698
1698
|
conditioning_volume=conditioning_vol,
|
|
1699
1699
|
)
|
|
1700
1700
|
|
|
1701
|
-
# If the tip has volumes
|
|
1701
|
+
# If the tip has volumes corresponding to multiple destinations, then
|
|
1702
1702
|
# multi-dispense in those destinations.
|
|
1703
1703
|
# If the tip has a volume corresponding to a single destination, then
|
|
1704
1704
|
# do a single-dispense into that destination.
|
|
1705
|
-
for
|
|
1705
|
+
for dispense_vol, dispense_dest in vol_dest_combo:
|
|
1706
1706
|
if use_single_dispense:
|
|
1707
1707
|
tip_contents = self.dispense_liquid_class(
|
|
1708
|
-
volume=
|
|
1709
|
-
dest=
|
|
1708
|
+
volume=dispense_vol,
|
|
1709
|
+
dest=dispense_dest,
|
|
1710
1710
|
source=source,
|
|
1711
1711
|
transfer_properties=transfer_props,
|
|
1712
1712
|
transfer_type=tx_comps_executor.TransferType.ONE_TO_MANY,
|
|
@@ -1718,8 +1718,8 @@ class InstrumentCore(AbstractInstrument[WellCore, LabwareCore]):
|
|
|
1718
1718
|
)
|
|
1719
1719
|
else:
|
|
1720
1720
|
tip_contents = self.dispense_liquid_class_during_multi_dispense(
|
|
1721
|
-
volume=
|
|
1722
|
-
dest=
|
|
1721
|
+
volume=dispense_vol,
|
|
1722
|
+
dest=dispense_dest,
|
|
1723
1723
|
source=source,
|
|
1724
1724
|
transfer_properties=transfer_props,
|
|
1725
1725
|
transfer_type=tx_comps_executor.TransferType.ONE_TO_MANY,
|
|
@@ -2145,7 +2145,7 @@ class InstrumentCore(AbstractInstrument[WellCore, LabwareCore]):
|
|
|
2145
2145
|
return
|
|
2146
2146
|
|
|
2147
2147
|
correction_volume = dispense_props.correction_by_volume.get_for_volume(
|
|
2148
|
-
last_air_gap
|
|
2148
|
+
self.get_current_volume() - last_air_gap
|
|
2149
2149
|
)
|
|
2150
2150
|
# The minimum flow rate should be air_gap_volume per second
|
|
2151
2151
|
flow_rate = max(
|
|
@@ -229,7 +229,9 @@ class TransferComponentsExecutor:
|
|
|
229
229
|
and self._target_well is not None
|
|
230
230
|
)
|
|
231
231
|
aspirate_props = self._transfer_properties.aspirate
|
|
232
|
-
correction_volume = aspirate_props.correction_by_volume.get_for_volume(
|
|
232
|
+
correction_volume = aspirate_props.correction_by_volume.get_for_volume(
|
|
233
|
+
self._instrument.get_current_volume() + volume
|
|
234
|
+
)
|
|
233
235
|
self._instrument.aspirate(
|
|
234
236
|
location=self._target_location,
|
|
235
237
|
well_core=None,
|
|
@@ -252,7 +254,7 @@ class TransferComponentsExecutor:
|
|
|
252
254
|
) -> None:
|
|
253
255
|
"""Dispense according to dispense properties and wait if enabled."""
|
|
254
256
|
correction_volume = dispense_properties.correction_by_volume.get_for_volume(
|
|
255
|
-
volume
|
|
257
|
+
self._instrument.get_current_volume() - volume
|
|
256
258
|
)
|
|
257
259
|
self._instrument.dispense(
|
|
258
260
|
location=self._target_location,
|
|
@@ -895,7 +897,7 @@ class TransferComponentsExecutor:
|
|
|
895
897
|
return
|
|
896
898
|
aspirate_props = self._transfer_properties.aspirate
|
|
897
899
|
correction_volume = aspirate_props.correction_by_volume.get_for_volume(
|
|
898
|
-
air_gap_volume
|
|
900
|
+
self._instrument.get_current_volume() + air_gap_volume
|
|
899
901
|
)
|
|
900
902
|
# The minimum flow rate should be air_gap_volume per second
|
|
901
903
|
flow_rate = max(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: opentrons
|
|
3
|
-
Version: 8.5.
|
|
3
|
+
Version: 8.5.0a9
|
|
4
4
|
Summary: The Opentrons API is a simple framework designed to make writing automated biology lab protocols easy.
|
|
5
5
|
Author: Opentrons
|
|
6
6
|
Author-email: engineering@opentrons.com
|
|
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering
|
|
22
22
|
Requires-Python: >=3.10
|
|
23
23
|
License-File: ../LICENSE
|
|
24
|
-
Requires-Dist: opentrons-shared-data (==8.5.
|
|
24
|
+
Requires-Dist: opentrons-shared-data (==8.5.0a9)
|
|
25
25
|
Requires-Dist: aionotify (==0.3.1)
|
|
26
26
|
Requires-Dist: anyio (<4.0.0,>=3.6.1)
|
|
27
27
|
Requires-Dist: jsonschema (<4.18.0,>=3.0.1)
|
|
@@ -35,9 +35,9 @@ Requires-Dist: pyusb (==1.2.1)
|
|
|
35
35
|
Requires-Dist: packaging (>=21.0)
|
|
36
36
|
Requires-Dist: importlib-metadata (>=1.0) ; python_version < "3.8"
|
|
37
37
|
Provides-Extra: flex-hardware
|
|
38
|
-
Requires-Dist: opentrons-hardware[flex] (==8.5.
|
|
38
|
+
Requires-Dist: opentrons-hardware[flex] (==8.5.0a9) ; extra == 'flex-hardware'
|
|
39
39
|
Provides-Extra: ot2-hardware
|
|
40
|
-
Requires-Dist: opentrons-hardware (==8.5.
|
|
40
|
+
Requires-Dist: opentrons-hardware (==8.5.0a9) ; extra == 'ot2-hardware'
|
|
41
41
|
|
|
42
42
|
.. _Full API Documentation: http://docs.opentrons.com
|
|
43
43
|
|
|
@@ -249,7 +249,7 @@ opentrons/protocol_api/core/well_grid.py,sha256=BU28DKaBgEU_JdZ6pEzrwNxmuh6TkO4z
|
|
|
249
249
|
opentrons/protocol_api/core/engine/__init__.py,sha256=B_5T7zgkWDb1mXPg4NbT-wBkQaK-WVokMMnJRNu7xiM,582
|
|
250
250
|
opentrons/protocol_api/core/engine/deck_conflict.py,sha256=q3JViIAHDthIqq6ce7h2gxw3CHRfYsm5kkwzuXB-Gnc,12334
|
|
251
251
|
opentrons/protocol_api/core/engine/exceptions.py,sha256=aZgNrmYEeuPZm21nX_KZYtvyjv5h_zPjxxgPkEV7_bw,725
|
|
252
|
-
opentrons/protocol_api/core/engine/instrument.py,sha256=
|
|
252
|
+
opentrons/protocol_api/core/engine/instrument.py,sha256=3qh-qmK69ot3B73oWmepBx53jXOcpwFPPModhGoqu2U,103611
|
|
253
253
|
opentrons/protocol_api/core/engine/labware.py,sha256=1xvzguNnK7aecFLiJK0gtRrZ5kpwtzLS73HnKvdJ5lc,8413
|
|
254
254
|
opentrons/protocol_api/core/engine/load_labware_params.py,sha256=I4Cb8rqpBhmykQuZE8QRG802APrdCy_TYS88rm_9oGA,7159
|
|
255
255
|
opentrons/protocol_api/core/engine/module_core.py,sha256=MLPgYSRJHUZPZ9rTLvsg3GlpL5b6-Pjk5UBgXCGrL6U,30994
|
|
@@ -259,7 +259,7 @@ opentrons/protocol_api/core/engine/point_calculations.py,sha256=C2eF0fvJQGMqQv3D
|
|
|
259
259
|
opentrons/protocol_api/core/engine/protocol.py,sha256=OvE8kDONIR0z5S-FV10KUw5v5_HskPk7aqFNyTSUasc,46919
|
|
260
260
|
opentrons/protocol_api/core/engine/robot.py,sha256=bzUt23NG-clD-9-QFsV_6nm3fMgSmvYEG9DyyZI1xgw,5366
|
|
261
261
|
opentrons/protocol_api/core/engine/stringify.py,sha256=GwFgEhFMk-uPfFQhQG_2mkaf4cxaItiY8RW7rZwiooQ,2794
|
|
262
|
-
opentrons/protocol_api/core/engine/transfer_components_executor.py,sha256=
|
|
262
|
+
opentrons/protocol_api/core/engine/transfer_components_executor.py,sha256=zLokgodl5hu471_3uGKhm3TKOuOsvyeDKSiSkmmotf0,43462
|
|
263
263
|
opentrons/protocol_api/core/engine/well.py,sha256=IaaFK-3hoUfabfn_twIT7zcAynhzAmRxDnvABss2szo,8923
|
|
264
264
|
opentrons/protocol_api/core/legacy/__init__.py,sha256=_9jCJNKG3SlS_vljVu8HHkZmtLf4F-f-JHALLF5d5go,401
|
|
265
265
|
opentrons/protocol_api/core/legacy/deck.py,sha256=qHqcGo-Kdkl9L1aOE0pwrm9tsAnwkXbt4rIOr_VEP-s,13955
|
|
@@ -584,9 +584,9 @@ opentrons/util/linal.py,sha256=IlKAP9HkNBBgULeSf4YVwSKHdx9jnCjSr7nvDvlRALg,5753
|
|
|
584
584
|
opentrons/util/logging_config.py,sha256=7et4YYuQdWdq_e50U-8vFS_QyNBRgdnqPGAQJm8qrIo,9954
|
|
585
585
|
opentrons/util/logging_queue_handler.py,sha256=ZsSJwy-oV8DXwpYiZisQ1PbYwmK2cOslD46AcyJ1E4I,2484
|
|
586
586
|
opentrons/util/performance_helpers.py,sha256=ew7H8XD20iS6-2TJAzbQeyzStZkkE6PzHt_Adx3wbZQ,5172
|
|
587
|
-
opentrons-8.5.
|
|
588
|
-
opentrons-8.5.
|
|
589
|
-
opentrons-8.5.
|
|
590
|
-
opentrons-8.5.
|
|
591
|
-
opentrons-8.5.
|
|
592
|
-
opentrons-8.5.
|
|
587
|
+
opentrons-8.5.0a9.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
588
|
+
opentrons-8.5.0a9.dist-info/METADATA,sha256=nJjbwXecLEzOwdHxrr1YkHreHdpA1rane4x2MmTnJUI,5084
|
|
589
|
+
opentrons-8.5.0a9.dist-info/WHEEL,sha256=qUzzGenXXuJTzyjFah76kDVqDvnk-YDzY00svnrl84w,109
|
|
590
|
+
opentrons-8.5.0a9.dist-info/entry_points.txt,sha256=fTa6eGCYkvOtv0ov-KVE8LLGetgb35LQLF9x85OWPVw,106
|
|
591
|
+
opentrons-8.5.0a9.dist-info/top_level.txt,sha256=wk6whpbMZdBQpcK0Fg0YVfUGrAgVOFON7oQAhOMGMW8,10
|
|
592
|
+
opentrons-8.5.0a9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|