Skip to main content

psimodpy

CI PyPI version Python License: MIT DOI

psimodpy wraps the PSI-MOD protein modification ontology in a typed Python API, so proteomics tooling can look up modifications by ID, name, mass, or amino acid without writing an OBO parser or re-deriving elemental formulas by hand. It ships with the full ontology bundled in, so it works fully offline.

Highlights

  • Bundled, offline data — 2,116 PSI-MOD terms 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 numeric ID, MOD:NNNNN accession, exact name, free-text search, amino-acid origin, or ontology parent/child relationships
  • Formula and mass helpers computed for you (elemental composition dicts, ProForma-style formula strings)
  • Round-trip export to TSV/CSV and back to OBO
  • Online browser — search, sort, and inspect every term with clickable parent/child links, no install required
  • Optional local FastAPI + MCP server (pip install psimodpy[server]) to expose the database over HTTP or to LLM tools

Install

pip install psimodpy

Or with uv:

uv add psimodpy

Requires Python 3.12+. No third-party dependencies for the core package.

Quick Example

import psimodpy

db = psimodpy.load()          # bundled PSI-MOD database, no download needed
print(len(db))                # 2116

# Lookup by numeric ID or "MOD:NNNNN" accession
entry = db[46]
print(entry.name)             # O-phospho-L-serine
print(entry.origin)           # S
print(entry.diff_mono)        # 79.966331
print(entry.dict_composition)  # {'H': 1, 'O': 3, 'P': 1}
print(entry.proforma_formula)   # HO3P

# Lookup by exact name (case-insensitive)
same_entry = db.get_by_name("O-phospho-L-serine")

# Full-text search across names, definitions, and synonyms
hits = db.search("phospho")
print(len(hits))              # 99

# Every modification known to occur on a given amino acid
ser_mods = db.get_by_origin("S")
print(len(ser_mods))          # 154

More

Filtering, TSV/CSV export, OBO round-trip
# Filter obsolete or non-slim terms
slim = db.filter(slim_only=True, include_obsolete=False)

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

# Round-trip back to PSI-MOD OBO format
db.write_obo("out/psi-mod.obo")
db2 = psimodpy.parse_obo("out/psi-mod.obo")  # identical entry count and fields
Local HTTP API and MCP server (pip install psimodpy[server])
pip install psimodpy[server]
uvicorn psimodpy.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/by-origin/{aa}, /api/entries/{id}/parents, …) and an MCP endpoint at POST /mcp with get_by_id, get_by_name, search, get_parents, get_children, and get_by_origin tools, for pointing LLM clients directly at PSI-MOD:

claude mcp add psi-mod http://localhost:8000/mcp --transport http
Full API reference
Function Description
psimodpy.load(source=None, *, refresh=False, include_obsolete=True) Load the bundled PSI-MOD database, an OBO file (source), or the latest release (refresh=True).
psimodpy.parse_obo(path) Parse an OBO file into a database.
psimodpy.download(dest=None, *, force=False) Download the latest OBO file from GitHub.
psimodpy.write_tsv(entries, path, *, delimiter) Write entries to a TSV (or CSV) file.
psimodpy.write_obo(entries, path, *, header_lines) Write entries back to PSI-MOD OBO format.

PsiModDatabase: db[id], get_by_id, get_by_name, search, get_by_origin, get_parents, get_children, get_related, filter, write_tsv, write_obo, header_lines.

PsiModEntry fields: id, name, definition, definition_ref, synonyms, is_a, relationships, origin, diff_mono, diff_avg, diff_formula, mass_mono, mass_avg, formula, term_spec, source, formal_charge, xref_unimod, xref_uniprot_ptm, xref_gnome, xref_remap, in_slim_subset, is_obsolete, plus computed accession ("MOD:00046"), dict_composition, dict_formula, proforma_formula.

Errors: PsimodError, and PsimodParseError (also a ValueError) for malformed OBO input. get_by_id returns None for an unknown or malformed id; only db[key] raises (KeyError).

Data types: AminoAcid, Crosslink, Synonym / SynonymType, Relationship / RelationshipType, TermSpec, Source.

See CHANGELOG.md for release history.

Data Source

Term data comes from the HUPO-PSI PSI-MOD controlled vocabulary, maintained by the HUPO Proteomics Standards Initiative. See that repository for the ontology'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
uniprotptmpy Parse and query the UniProt PTM controlled vocabulary
tacular Broader MS-proteomics lookup library (amino acids, elements, fragment-ion masses) that bundles its own copies of PSI-MOD alongside UNIMOD, RESID, XLMOD, GNOme, and UniProt-PTM; the base library for peptacular and paftacular

Citation

If psimodpy 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 psimodpy 1.0.0

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

Source distribution (sdist)

Source distribution for psimodpy 1.0.0
File Size Uploaded
psimodpy-1.0.0.tar.gz 367.7 kB Details

Built distribution (wheel)

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

Total release size: 648.5 kB

Release files / psimodpy-1.0.0.tar.gz

Download URL psimodpy-1.0.0.tar.gz
Size 367.7 kB
Tags Source
SHA-256 checksum
How to use checksums
dc19cc6734ff2b07e8c88ad7e79ecd43d08c172caaa7357f65acb21fad85bb70
BLAKE2b-256 checksum
How to use checksums
ed11f9b2434ac9097f1ae644a8b5874bdf3a609f32ae9deeec39444c73e0f06a
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 24, 2026.

Transparency log

Release files / psimodpy-1.0.0-py3-none-any.whl

Download URL psimodpy-1.0.0-py3-none-any.whl
Size 280.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
bd7aa40255f6891a34a31ba79238c548dd05130ba90531a3a65b07e2e0740e82
BLAKE2b-256 checksum
How to use checksums
1107a858ab00c14ff3f3a0623a46fe194a21fc414ec677850ab4cd55457c8a62
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 24, 2026.

Transparency log

Release history Release notifications | RSS feed

1.1.0

2 release files

This release

1.0.0 This release

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.1

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