opentrons 8.5.0a7__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.

@@ -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 correspoinding to multiple destinations, then
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 next_vol, next_dest in vol_dest_combo:
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=next_vol,
1709
- dest=next_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=next_vol,
1722
- dest=next_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(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(
@@ -570,13 +570,13 @@ class InstrumentContext(publisher.CommandPublisher):
570
570
  dispensing flow rate is calculated as ``rate`` multiplied by
571
571
  :py:attr:`flow_rate.dispense <flow_rate>`. See
572
572
  :ref:`new-plunger-flow-rates`.
573
- :param aspirate_flow_rate: The flow rate for each aspirate in the mix, in µL/s.
573
+ :param aspirate_flow_rate: The absolute flow rate for each aspirate in the mix, in µL/s.
574
574
  If this is specified, ``rate`` must not be set.
575
- :param dispense_flow_rate: The flow rate for each dispense in the mix, in µL/s.
575
+ :param dispense_flow_rate: The absolute flow rate for each dispense in the mix, in µL/s.
576
576
  If this is specified, ``rate`` must not be set.
577
577
  :param aspirate_delay: How long to wait after each aspirate in the mix, in seconds.
578
578
  :param dispense_delay: How long to wait after each dispense in the mix, in seconds.
579
- :param final_push_out: How much to push out after the final mix repetition. The
579
+ :param final_push_out: How much volume to push out after the final mix repetition. The
580
580
  pipette will not push out after earlier repetitions. If
581
581
  not specified or ``None``, the pipette will push out the
582
582
  default non-zero amount. See :ref:`push-out-dispense`.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: opentrons
3
- Version: 8.5.0a7
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.0a7)
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.0a7) ; extra == 'flex-hardware'
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.0a7) ; extra == 'ot2-hardware'
40
+ Requires-Dist: opentrons-hardware (==8.5.0a9) ; extra == 'ot2-hardware'
41
41
 
42
42
  .. _Full API Documentation: http://docs.opentrons.com
43
43
 
@@ -229,7 +229,7 @@ opentrons/protocol_api/config.py,sha256=r9lyvXjagTX_g3q5FGURPpcz2IA9sSF7Oa_1mKx-
229
229
  opentrons/protocol_api/create_protocol_context.py,sha256=wwsZje0L__oDnu1Yrihau320_f-ASloR9eL1QCtkOh8,7612
230
230
  opentrons/protocol_api/deck.py,sha256=94vFceg1SC1bAGd7TvC1ZpYwnJR-VlzurEZ6jkacYeg,8910
231
231
  opentrons/protocol_api/disposal_locations.py,sha256=NRiSGmDR0LnbyEkWSOM-o64uR2fUoB1NWJG7Y7SsJSs,7920
232
- opentrons/protocol_api/instrument_context.py,sha256=oV6cdU-L0vHqzjICe3mKE3bRXs8TmGXacpjTHj--oU0,138939
232
+ opentrons/protocol_api/instrument_context.py,sha256=B0-bI1UYtmk0tzikmtBamW-VBkx4iiktFrOgNtN5mOY,138964
233
233
  opentrons/protocol_api/labware.py,sha256=AhL1JX10Xt-mpB85CAnEOBvz9r5v3xncJuLMkiY1FPM,60934
234
234
  opentrons/protocol_api/module_contexts.py,sha256=Mzut2a92Gcv23wFPdNVU9fj2P--7WDqBx27xAJ7z8eo,48361
235
235
  opentrons/protocol_api/module_validation_and_errors.py,sha256=XL_m72P8rcvGO2fynY7UzXLcpGuI6X4s0V6Xf735Iyc,1464
@@ -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=KgRDIq50Nah2lcMuOtcpDTjckt9ycqWtQ37u6GfpEnQ,103560
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=j5V43ns3pmpH5mtbaxKLzyey9je1-FDd9JFc26nMVNQ,43320
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.0a7.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
588
- opentrons-8.5.0a7.dist-info/METADATA,sha256=hwuM6YYv_P5I0ajOPnA881RX44DKkJhCbARJrffgKcY,5084
589
- opentrons-8.5.0a7.dist-info/WHEEL,sha256=qUzzGenXXuJTzyjFah76kDVqDvnk-YDzY00svnrl84w,109
590
- opentrons-8.5.0a7.dist-info/entry_points.txt,sha256=fTa6eGCYkvOtv0ov-KVE8LLGetgb35LQLF9x85OWPVw,106
591
- opentrons-8.5.0a7.dist-info/top_level.txt,sha256=wk6whpbMZdBQpcK0Fg0YVfUGrAgVOFON7oQAhOMGMW8,10
592
- opentrons-8.5.0a7.dist-info/RECORD,,
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,,