move_items_to_specific_grid_locations
Place research items at exact grid coordinates within RSpace containers for precise experimental layouts and protocol organization.
Instructions
Places items at specific coordinates within a grid container
Usage: Precise positioning for experimental layouts or protocols Coordinates: Each item gets an exact (row, column) position Validation: Ensures equal number of items and positions
Returns: Success status and confirmation of final positions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
grid_locations | Yes | ||
item_ids | Yes | ||
target_container_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"grid_locations": {
"items": {
"$ref": "#/$defs/GridLocation"
},
"title": "Grid Locations",
"type": "array"
},
"item_ids": {
"items": {
"type": "string"
},
"title": "Item Ids",
"type": "array"
},
"target_container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Target Container Id"
}
},
"required": [
"target_container_id",
"item_ids",
"grid_locations"
],
"type": "object"
}