export_protein_data
Export protein-related data in GFF, GenBank, or other formats using a UniProt accession number for specialized analysis and integration.
Instructions
Export data in specialized formats (GFF, GenBank, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accession | Yes | UniProt accession number | |
format | Yes | Export format |
Input Schema (JSON Schema)
{
"properties": {
"accession": {
"description": "UniProt accession number",
"type": "string"
},
"format": {
"description": "Export format",
"enum": [
"gff",
"genbank",
"embl",
"xml"
],
"type": "string"
}
},
"required": [
"accession",
"format"
],
"type": "object"
}