pylabrobot.resources.Deck#
- class pylabrobot.resources.Deck(name: str = 'deck', size_x: float = 1360, size_y: float = 653.5, size_z: float = 900, resource_assigned_callback: Callable | None = None, resource_unassigned_callback: Callable | None = None, origin: Coordinate = Coordinate(x=0, y=0, z=0), category: str = 'deck')#
Bases:
Resource
Base class for liquid handler decks.
Attributes
Get the name of this resource.
Methods
__init__
([name, size_x, size_y, size_z, ...])Initialize a new deck.
assign_child_resource
(resource, location[, ...])Assign a child resource to this resource.
center
()Get the center of the bottom plane of this resource.
clear
()Removes all resources from the deck.
copy
()Copy this resource.
deserialize
(data)Deserialize a resource from a dictionary.
Get the offsets (from bottom left) of the center(s) of this resource.
Get the absolute location of this resource, probably within the
pylabrobot.resources.Deck
.Recursively get all children of this resource.
Returns a list of all resources in the deck.
get_resource
(name)Returns the resource with the given name.
Get the size of this resource in the z-direction.
Returns the trash area resource.
has_resource
(name)Returns True if the deck has a resource with the given name.
load_from_json_file
(json_file)Loads resources from a JSON file.
load_state
(data)Load state from a data dictionary.
load_state_from_file
(filename)Load the state of the deck from a file.
resource_assigned_callback
(resource)Keeps track of the resources in the deck.
resource_unassigned_callback
(resource)Called when a resource is unassigned from this resource.
rotate
(degrees)Rotate counter clockwise by the given number of degrees.
rotated
(degrees)Return a copy of this resource rotated by the given number of degrees.
save
(fn[, indent])Save a resource to a JSON file.
save_state_to_file
(filename)Save the state of the deck to a file.
Serialize this deck.
Serialize the deck state.
summary
()Returns a summary of the deck layout.
unassign
()Unassign this resource from its parent.
unassign_child_resource
(resource)Unassign a child resource from this resource.