add_note_to_subsample
Attach annotations, observations, or handling instructions to a specific subsample in RSpace to document experimental details and track changes.
Instructions
Adds annotations or observations to a specific subsample
Usage: Record experimental notes, observations, or handling instructions Returns: Updated subsample information with new note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note | Yes | ||
subsample_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"note": {
"title": "Note",
"type": "string"
},
"subsample_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Subsample Id"
}
},
"required": [
"subsample_id",
"note"
],
"type": "object"
}