batch_annotate
Annotate multiple texts simultaneously with biological ontologies using comma-separated ontology acronyms, returning longest or whole-word matches as specified.
Instructions
Process multiple texts for annotation efficiently
Input Schema
Name | Required | Description | Default |
---|---|---|---|
longest_only | No | Return only longest matches (default: true) | |
ontologies | No | Comma-separated ontology acronyms | |
texts | Yes | Array of texts to annotate (max 10) | |
whole_word_only | No | Match whole words only (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"longest_only": {
"description": "Return only longest matches (default: true)",
"type": "boolean"
},
"ontologies": {
"description": "Comma-separated ontology acronyms",
"type": "string"
},
"texts": {
"description": "Array of texts to annotate (max 10)",
"items": {
"type": "string"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"whole_word_only": {
"description": "Match whole words only (default: true)",
"type": "boolean"
}
},
"required": [
"texts"
],
"type": "object"
}