fetch_entry_flatfile
Retrieve UniProt flatfile data in txt or fasta format for specific protein entry versions to access detailed protein information and sequences.
Instructions
Return the UniProt flatfile (txt or fasta) for a specific entry version.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| accession | Yes | ||
| version | Yes | ||
| format | No | txt | 
Input Schema (JSON Schema)
{
  "properties": {
    "accession": {
      "title": "Accession",
      "type": "string"
    },
    "format": {
      "default": "txt",
      "title": "Format",
      "type": "string"
    },
    "version": {
      "title": "Version",
      "type": "string"
    }
  },
  "required": [
    "accession",
    "version"
  ],
  "type": "object"
}