batch_protein_lookup
Retrieve protein data for multiple UniProt accessions in bulk, supporting JSON, TSV, or FASTA formats for efficient analysis and integration.
Instructions
Process multiple accessions efficiently
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accessions | Yes | Array of UniProt accession numbers (1-100) | |
format | No | Output format (default: json) |
Input Schema (JSON Schema)
{
"properties": {
"accessions": {
"description": "Array of UniProt accession numbers (1-100)",
"items": {
"type": "string"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"format": {
"description": "Output format (default: json)",
"enum": [
"json",
"tsv",
"fasta"
],
"type": "string"
}
},
"required": [
"accessions"
],
"type": "object"
}