map_ids
Convert protein identifiers between different biological databases using UniProt's mapping service across 200+ supported namespaces.
Instructions
Map identifiers between UniProt-supported namespaces.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| from_db | Yes | ||
| to_db | Yes | ||
| ids | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "from_db": {
      "title": "From Db",
      "type": "string"
    },
    "ids": {
      "items": {
        "type": "string"
      },
      "title": "Ids",
      "type": "array"
    },
    "to_db": {
      "title": "To Db",
      "type": "string"
    }
  },
  "required": [
    "from_db",
    "to_db",
    "ids"
  ],
  "type": "object"
}