Skip to main content

Peptacular

Peptacular Logo

A Python package for peptide sequence analysis built around ProForma 2.1 notation. Calculate masses, generate fragments, predict isotopic patterns, and more. Peptacular uses type annotations extensively, so it is type safe.

Python package codecov PyPI version Python 3.12+ License: MIT

Documentation/ Examples

ReadTheDocs

Features

  • ProForma 2.1 Parsing
  • Modifiable ProFormaAnnotation Objects (Factory Pattern)
  • Mass/Mz/Composition Calculations
  • Predicted Isotopic Distributions
  • Enzymatic Protein Digestion
  • Fragment Ion Generation
  • Physiochemical Property Calculations
  • Streaming FASTA and Gzip Input
  • Indexed Batch Results and Input Diagnostics
  • Versioned JSON Serialization
  • Optional Pyteomics, psm_utils, and AlphaBase Integrations
  • Built-in Parallel Processing

Installation

pip install peptacular

Optional package adapters can be installed separately:

pip install "peptacular[pyteomics]"
pip install "peptacular[psm-utils]"
pip install "peptacular[alphabase]"

See the interoperability guide and JSON serialization guide for supported conversions and examples.

Quick Start (Object Based)

See docs for more detail.

import peptacular as pt

# Parse a sequence into a ProFormaAnnotation
peptide: pt.ProFormaAnnotation = pt.parse("PEM[Oxidation]TIDE")

# Calculate mass and m/z
mass: float = peptide.mass() # 849.342
mz: float = peptide.mz(charge=2) # 425.678

# Factory pattern
print(peptide.set_charge(2).set_peptide_name("Peptacular").serialize())
# (>Peptacular)PEM[Oxidation]TIDE/2

Quick Start (Functional Based)

Small lists run sequentially. Larger lists automatically use parallel execution, with explicit backend and worker overrides available.

import peptacular as pt

peptides = ['[Acetyl]-PEPTIDES', '<C13>ARE', 'SICK/2']

# Calculate mass and m/z for all peptides
masses: list[float] = pt.mass(peptides) # [928.4026, 374.1914, 451.2454]
mzs: list[float] = pt.mz(peptides, charge=2) # [465.2086, 188.103, 225.6227]

For streaming input, optional batch error collection, and operation diagnostics, see the streaming guide.

results = pt.batch("mass", ["PEPTIDE", "PEP[UnknownModification]TIDE"], errors="collect")
print(results[0].value)
print(results[1].error.code)  # unresolved_modification

Local MCP integration

Peptacular includes 12 optional MCP tools for agents to inspect annotations, calculate theoretical properties, digest protein sequences, and transform annotations. Calls accept small inline batches and return results directly, with no stored data or job setup. Install with pip install "peptacular[mcp]", then check the installation:

peptacular-mcp --check

See the local MCP guide for Claude Code setup, tool examples, limits, and the boundary with Spectacular's spectrum handling.

ProForma 2.1 Compliance

See PROFORMA_COMPLIANCE.md for detailed compliance status.

Contributing

Contributions welcome! See CONTRIBUTING.md for guidelines on setting up the development environment, code style, testing, and submitting pull requests.

License

MIT

Citation

Working on a JOSS submission, but in the meantime use:

https://doi.org/10.5281/zenodo.15054278

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

peptacular-3.3.0.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

peptacular-3.3.0-py3-none-any.whl (214.4 kB view details)

Uploaded Python 3

File details

Details for the file peptacular-3.3.0.tar.gz.

File metadata

  • Download URL: peptacular-3.3.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for peptacular-3.3.0.tar.gz
Algorithm Hash digest
SHA256 ffc68911a067b97bed2f6928cb9aca8bf73a2106572c7dfd6e1b3046fc1c6089
MD5 4eb8c53e9f7aa0d2af9ad68845170b92
BLAKE2b-256 0dc9c0de8ffc372f9495315fd2c8b62e25423c5cf6ffb998d27d788ca790821e

See more details on using hashes here.

File details

Details for the file peptacular-3.3.0-py3-none-any.whl.

File metadata

  • Download URL: peptacular-3.3.0-py3-none-any.whl
  • Upload date:
  • Size: 214.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for peptacular-3.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8a2d632f70277945855533e825be5a5894813f81004ebd5d70af2c52186f6081
MD5 05f12a4d156e1bd826c9910d50baabb9
BLAKE2b-256 05158a0564f5dfbd048539413b109ef70686805e5d30bb3a4ea92e75b8e176d6

See more details on using hashes here.

Release history Release notifications | RSS feed

4.0.0

2 files

This release

3.3.0 This release

2 files

3.2.0

2 files

3.1.2

2 files

3.1.1

2 files

3.1.0

2 files

3.0.0

2 files

2.5.1

2 files

2.5.0

2 files

2.4.0

2 files

2.2.1

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.3.0

2 files

1.2.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.4

2 files

0.0.3

2 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