duplicate_sample
Create an exact copy of an existing sample in RSpace for parallel experiments or backup purposes, generating a new sample with a fresh ID and subsamples.
Instructions
Creates an exact copy of an existing sample
Usage: Replicate samples for parallel experiments or backup Returns: New sample information with fresh ID and subsamples
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_name | No | ||
sample_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_name": {
"default": null,
"title": "New Name",
"type": "string"
},
"sample_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Sample Id"
}
},
"required": [
"sample_id"
],
"type": "object"
}