get_protein_sequence
Retrieve the amino acid sequence of a protein using its UniProt accession number. Supports output in FASTA or JSON format for integration and analysis.
Instructions
Get the amino acid sequence for a protein
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accession | Yes | UniProt accession number | |
format | No | Output format (default: fasta) |
Input Schema (JSON Schema)
{
"properties": {
"accession": {
"description": "UniProt accession number",
"type": "string"
},
"format": {
"description": "Output format (default: fasta)",
"enum": [
"fasta",
"json"
],
"type": "string"
}
},
"required": [
"accession"
],
"type": "object"
}