create_sample
Register new laboratory samples in RSpace with metadata, quantity tracking, and automatic subsample aliquot creation for research inventory management.
Instructions
Creates a new sample in the inventory system
Usage: Register new samples with metadata and quantity tracking Subsamples: Automatically creates specified number of subsample aliquots Quantity: Tracks total amount with specified units (ml, mg, μl, etc.)
Returns: Created sample information including generated subsample IDs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
subsample_count | No | ||
tags | No | ||
total_quantity_unit | No | ml | |
total_quantity_value | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"subsample_count": {
"default": 1,
"title": "Subsample Count",
"type": "integer"
},
"tags": {
"default": null,
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
},
"total_quantity_unit": {
"default": "ml",
"title": "Total Quantity Unit",
"type": "string"
},
"total_quantity_value": {
"default": null,
"title": "Total Quantity Value",
"type": "number"
}
},
"required": [
"name"
],
"type": "object"
}