Skip to main content

uniprotptmpy

CI PyPI version Python License: MIT DOI

uniprotptmpy wraps the UniProt post-translational modification (PTM) controlled vocabulary in a typed Python API, so proteomics tooling can look up PTMs by accession, name, or free text without writing a parser for UniProt's ptmlist.txt flat file. It ships with the full vocabulary bundled in, so it works fully offline.

Highlights

  • Bundled, offline data — 750 PTM entries shipped with the package; no network calls needed
  • Zero core dependencies — pure Python, pip install and go
  • Typed, immutable models with py.typed (PEP 561) for IDE autocomplete and static checking
  • Rich lookups — by accession (PTM-0450), exact name, free-text search across name/target/keywords, subscript access, and iteration
  • Formula helpers computed for you (elemental composition dicts, ProForma-style formula strings)
  • Round-trip export to TSV/CSV and back to the original ptmlist.txt format
  • Online browser — search, sort, and inspect every term, no install required
  • Hosted REST API + MCP server at uniprot.tacular.dev (API docs, MCP endpoint https://uniprot.tacular.dev/mcp), no install required
  • Optional local FastAPI + MCP server (pip install uniprotptmpy[server]) to expose the database over HTTP or to LLM tools

Install

pip install uniprotptmpy

Or with uv:

uv add uniprotptmpy

Requires Python 3.12+. No third-party dependencies for the core package. pip install "uniprotptmpy[link]" adds psimodpy and unimodpy, for entry.resolve(). entry.get_mass() is always UniProt's own mass; use resolve() for a linked one.

Quick Example

from uniprotptmpy import load

db = load()                   # bundled PTM database, no download needed
print(len(db))                # 750

# Lookup by accession
entry = db.get_by_id("PTM-0450")
print(entry.name)             # (2-aminosuccinimidyl)acetic acid (Asn-Gly)

# Lookup by exact name (case-insensitive)
entry = db.get_by_name("phosphoserine")
print(entry.id)               # PTM-0253

# Free-text search across name, ID, target, and keywords
results = db.search("acetylation")
print(len(results))           # 17

# Entries whose monoisotopic mass is within 0.01 Da of 79.966, on S, T or Y
for entry, error in db.search_mass(79.966, site="STY")[:3]:
    print(entry.name, round(error, 4))   # Phosphoserine -0.0003 ...
db.search_mass(42.010565, site="K")    # [(N6-acetyllysine, ~0.0)]

# Links to PSI-MOD and Unimod (resolve() needs: pip install "uniprotptmpy[link]")
entry = db.get_by_name("Phosphoserine")
print(entry.psimod_ids, entry.unimod_ids)  # ('MOD:00046',) ('UNIMOD:21',)
print(entry.resolve("unimod")[0].name)     # Phospho

# Dict-style access, iteration, and formula helpers
entry = db["PTM-0450"]
hydroxy = db.get_by_id("PTM-0476")
print(hydroxy.correction_formula)  # O1
print(hydroxy.dict_composition)    # {'O': 1}
print(hydroxy.proforma_formula)    # O

More

Downloading the latest data, TSV/CSV export, ptmlist.txt round-trip
from uniprotptmpy import download, load, write_tsv, write_ptmlist, parse_ptm_list

# Download the latest list from UniProt's FTP site
path = download()   # ~/.cache/uniprotptmpy/ptmlist.txt
db = load(path)

# Write every entry to TSV (or CSV)
db.write_tsv("ptms.tsv")
db.write_tsv("ptms.csv", delimiter=",")

# Round-trip back to the original UniProt flat-file format
db.write_ptmlist("out/ptmlist.txt")
db2 = parse_ptm_list("out/ptmlist.txt")  # identical entry count and fields
Local HTTP API and MCP server (pip install uniprotptmpy[server])
pip install uniprotptmpy[server]
uvicorn uniprotptmpy.server.app:app --reload

This starts a FastAPI app exposing the database as both a JSON REST API (GET /api/entries/{id}, /api/search, /api/entries/by-name/{name}, …) and an MCP endpoint at POST /mcp with get_by_id, get_by_name, and search tools, for pointing LLM clients directly at the UniProt PTM vocabulary:

claude mcp add uniprot-ptm http://localhost:8000/mcp --transport http

The same app is hosted at https://uniprot.tacular.dev (REST under /api/..., interactive docs at /docs), so you can skip the local install and point a client straight at the public MCP endpoint:

claude mcp add uniprot-ptm https://uniprot.tacular.dev/mcp --transport http
Full API reference
Symbol Description
load(source=None, *, refresh=False, cache=False) Load the PTM database. Uses bundled data by default; refresh=True downloads the current release first; cache=True parses the bundled file once and returns the same (read-only) database on later calls.
download(dest=None, *, force=False) Download the latest ptmlist.txt from UniProt FTP (reuses an existing file unless force=True).
parse_ptm_list(path) Parse a ptmlist.txt file into a PtmDatabase.
write_tsv(entries, path, *, delimiter) Write entries to a TSV (or CSV) file.
write_ptmlist(entries, path) Write entries back to UniProt ptmlist.txt flat-file format.
PtmDatabase Indexed collection with get_by_id(), get_by_name(), search(), search_mass(delta, *, tolerance=0.01, tolerance_unit="da", site=None, position=None) ((entry, error) pairs within tolerance Da), get_by_site(residue) (one residue), write_tsv(), write_ptmlist(), iteration, and len().
PtmEntry Frozen dataclass with all PTM fields, plus accession, dict_composition, proforma_formula ("HO3P"), psimod_ids and unimod_ids properties; get_mass(*, monoisotopic=True) (UniProt's own mass or None); resolve("psimod" | "unimod") returns the linked entries (needs the [link] extra).
UniprotPtmError, UniprotPtmParseError, UniprotPtmKeyError Package exceptions; the parse error is also a ValueError, and UniprotPtmKeyError (raised by db[key] on a miss) is also a KeyError.
FeatureType StrEnum: CROSSLNK, MOD_RES, LIPID, CARBOHYD, DISULFID.
CrossReference Frozen dataclass with database and accession fields.
TaxonomicRange Frozen dataclass with taxon_name, tax_id, description, and raw fields.

See CHANGELOG.md for release history.

Data Source

Term data comes from UniProt's PTM controlled vocabulary list, maintained by the UniProt Consortium. See uniprot.org for the vocabulary's own license and citation guidance.

Part of the tacular-omics family of proteomics PTM-vocabulary packages:

Package Description
unimodpy Parse and query the UNIMOD mass spectrometry modifications database
psimodpy Parse and query the PSI-MOD protein modification ontology
tacular Broader MS-proteomics lookup library (amino acids, elements, fragment-ion masses) that bundles its own copies of UniProt-PTM alongside UNIMOD, PSI-MOD, RESID, XLMOD, and GNOme; the base library for peptacular and paftacular

Citation

If uniprotptmpy is useful in your research, please cite it — see CITATION.cff or use the "Cite this repository" button on GitHub. Releases are archived on Zenodo (DOI badge above).

License

MIT

Release files for uniprotptmpy 1.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for uniprotptmpy 1.1.1
File Size Uploaded
uniprotptmpy-1.1.1.tar.gz 100.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for uniprotptmpy 1.1.1
File Interpreter ABI Platform
uniprotptmpy-1.1.1-py3-none-any.whl Python 3 none any Details

Total release size: 184.4 kB

Release files / uniprotptmpy-1.1.1.tar.gz

Download URL uniprotptmpy-1.1.1.tar.gz
Size 100.5 kB
Tags Source
SHA-256 checksum
How to use checksums
8a34c094166f7e45416644fae164a0fa13484f0e6b36f2b99622503a389d95b5
BLAKE2b-256 checksum
How to use checksums
d438311b5f42474190a2a92c4bda9925afdb5c91fb7edd345094ada9a0f4ddec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / uniprotptmpy-1.1.1-py3-none-any.whl

Download URL uniprotptmpy-1.1.1-py3-none-any.whl
Size 84.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
e78c57df42f03717a26dda1a20debcc9448393faa56ac2bc56ee988b4a080989
BLAKE2b-256 checksum
How to use checksums
2dd2c5565440e3eb73c8188a47831cd12d0d89591be4381698ebdb970e11ede1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.1.1 This release

2 release files

1.1.0

2 release files

1.0.0

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.2

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page