@@ -1794,7 +1794,7 @@ def transfer_with_liquid_class(
1794
1794
Union [types .Location , labware .Well , TrashBin , WasteChute ]
1795
1795
] = None ,
1796
1796
return_tip : bool = False ,
1797
- visit_every_well : bool = False ,
1797
+ group_wells : bool = True ,
1798
1798
) -> InstrumentContext :
1799
1799
"""Move a particular type of liquid from one well or group of wells to another.
1800
1800
@@ -1827,6 +1827,9 @@ def transfer_with_liquid_class(
1827
1827
tips. Depending on the liquid class, the pipette may also blow out liquid here.
1828
1828
:param return_tip: Whether to drop used tips in their original locations
1829
1829
in the tip rack, instead of the trash.
1830
+ :param group_wells: For multi-channel transfers only. If set to ``True``, group together contiguous wells
1831
+ given into a single transfer step, taking into account the tip configuration. If ``False``, target
1832
+ each well given with the primary nozzle. Defaults to ``True``.
1830
1833
1831
1834
:meta private:
1832
1835
"""
@@ -1844,7 +1847,7 @@ def transfer_with_liquid_class(
1844
1847
last_tip_picked_up_from = self ._last_tip_picked_up_from ,
1845
1848
tip_racks = self ._tip_racks ,
1846
1849
nozzle_map = self ._core .get_nozzle_map (),
1847
- target_all_wells = visit_every_well ,
1850
+ group_wells_for_multi_channel = group_wells ,
1848
1851
current_volume = self .current_volume ,
1849
1852
trash_location = (
1850
1853
trash_location if trash_location is not None else self .trash_container
@@ -1913,7 +1916,7 @@ def distribute_with_liquid_class(
1913
1916
Union [types .Location , labware .Well , TrashBin , WasteChute ]
1914
1917
] = None ,
1915
1918
return_tip : bool = False ,
1916
- visit_every_well : bool = False ,
1919
+ group_wells : bool = True ,
1917
1920
) -> InstrumentContext :
1918
1921
"""
1919
1922
Distribute a particular type of liquid from one well to a group of wells.
@@ -1943,6 +1946,9 @@ def distribute_with_liquid_class(
1943
1946
tips. Depending on the liquid class, the pipette may also blow out liquid here.
1944
1947
:param return_tip: Whether to drop used tips in their original locations
1945
1948
in the tip rack, instead of the trash.
1949
+ :param group_wells: For multi-channel transfers only. If set to ``True``, group together contiguous wells
1950
+ given into a single transfer step, taking into account the tip configuration. If ``False``, target
1951
+ each well given with the primary nozzle. Defaults to ``True``.
1946
1952
1947
1953
:meta private:
1948
1954
"""
@@ -1960,7 +1966,7 @@ def distribute_with_liquid_class(
1960
1966
last_tip_picked_up_from = self ._last_tip_picked_up_from ,
1961
1967
tip_racks = self ._tip_racks ,
1962
1968
nozzle_map = self ._core .get_nozzle_map (),
1963
- target_all_wells = visit_every_well ,
1969
+ group_wells_for_multi_channel = group_wells ,
1964
1970
current_volume = self .current_volume ,
1965
1971
trash_location = (
1966
1972
trash_location if trash_location is not None else self .trash_container
@@ -2035,7 +2041,7 @@ def consolidate_with_liquid_class(
2035
2041
Union [types .Location , labware .Well , TrashBin , WasteChute ]
2036
2042
] = None ,
2037
2043
return_tip : bool = False ,
2038
- visit_every_well : bool = False ,
2044
+ group_wells : bool = True ,
2039
2045
) -> InstrumentContext :
2040
2046
"""
2041
2047
Consolidate a particular type of liquid from a group of wells to one well.
@@ -2066,6 +2072,9 @@ def consolidate_with_liquid_class(
2066
2072
tips. Depending on the liquid class, the pipette may also blow out liquid here.
2067
2073
:param return_tip: Whether to drop used tips in their original locations
2068
2074
in the tip rack, instead of the trash.
2075
+ :param group_wells: For multi-channel transfers only. If set to ``True``, group together contiguous wells
2076
+ given into a single transfer step, taking into account the tip configuration. If ``False``, target
2077
+ each well given with the primary nozzle. Defaults to ``True``.
2069
2078
2070
2079
:meta private:
2071
2080
"""
@@ -2083,7 +2092,7 @@ def consolidate_with_liquid_class(
2083
2092
last_tip_picked_up_from = self ._last_tip_picked_up_from ,
2084
2093
tip_racks = self ._tip_racks ,
2085
2094
nozzle_map = self ._core .get_nozzle_map (),
2086
- target_all_wells = visit_every_well ,
2095
+ group_wells_for_multi_channel = group_wells ,
2087
2096
current_volume = self .current_volume ,
2088
2097
trash_location = (
2089
2098
trash_location if trash_location is not None else self .trash_container
0 commit comments