mlmm-toolkit: An End-to-End ML/MM ONIOM Platform for Automated Enzymatic Reaction Mechanism Analysis
Overview
mlmm-toolkit is an open-source CLI for ML/MM ONIOM analyses of enzymatic reactions. It replaces the QM region of conventional QM/MM with a machine-learning interatomic potential (MLIP, default: UMA) while keeping the surrounding protein under an analytical Amber force field (hessian_ff), and chains ML-region selection → MM topology/layer preparation → MEP search → TS optimization → IRC → thermochemical correction → DFT single-point in one command. A link-atom boundary handles amino-acid residues straddling the ML/MM cut, and a microiteration scheme separates ML and MM relaxation in large systems.
Test a reaction mechanism in a single command:
# Multi-structure MEP (R + P endpoints → MEP, with TS optimization + thermo)
mlmm all -i R.pdb P.pdb -c 'SAM,GPP' -l 'SAM:1,GPP:-3' --tsopt --thermo
The source repository includes a full-system BezA endpoint/scan mechanism, a methyltransferase walk-through, and a 122-atom ML/MM fixture; see examples/. Each stage is also exposed as an individual subcommand.
Prerequisites: input PDB/mmCIF structures must already contain hydrogens; multiple reaction states must share the same atoms in the same order (only coordinates differ).
mlmm allrunsmm-parmautomatically. Match-l RES:CHARGEto the H count actually present (e.g. SAM with 23 H =SAM:1cation, 22 H =SAM:0neutral) — full input-prep checklist in docs/getting-started.md.
Colab GUI workspace
An interactive GUI workspace is available in Google Colab. It brings full-system coordinates and topology input, ML-region setup, Mol* visualization and atom picking, controls generated from the live CLI, execution, and linked MEP/IRC/result inspection into one notebook. Choose a GPU runtime and open the Colab GUI workspace.
Related tools
| Tool | Use case |
|---|---|
| pdb2reaction | Pure-MLIP reaction paths for cluster models and small molecules from PDB / XYZ / GJF. |
| uma_pysis | Lightweight YAML-driven UMA–pysisyphus interface for quick/exploratory reaction-mechanism studies (GS / TS / IRC / ΔG). |
mlmm-toolkitbundles a GPU-optimized pysisyphus fork that is not compatible with upstream pysisyphus — do not install it into an environment that already has upstream pysisyphus.
Documentation
- Getting Started · mmCIF and Large Structures · Concepts · Installation · Troubleshooting
- Python API · CLI Conventions · YAML Reference · JSON Output Schema
- Full command index: docs/index.md
System requirements
| Component | Requirement |
|---|---|
| OS / Python | Linux recommended; native Windows unsupported (AmberTools/tleap unavailable). Python >= 3.11. |
| GPU / CUDA / VRAM | A backend-compatible NVIDIA GPU/driver for GPU execution; size VRAM from a representative target-system pilot. |
| RAM / Disk | Size RAM and disk for the selected backend, model cache, topology tools, and expected artifacts. |
Required external tools: AmberTools (tleap) and GCC >= 9 (the default hessian_ff backend JIT-compiles native kernels on first use). pdbfixer is optional — only mm-parm --add-h needs it — conda install -c conda-forge ambertools pdbfixer -y installs both. CPU-only ML/MM execution is supported but can be substantially slower than GPU execution; benchmark the selected backend and system. Full requirement and tuning details: docs/getting-started.md#installation.
Installation
# 1. New env + AmberTools + CUDA-enabled PyTorch
conda create -n mlmm-toolkit python=3.11 -y && conda activate mlmm-toolkit
conda install -c conda-forge ambertools pdbfixer -y
pip install torch==2.8.0 --index-url https://download.pytorch.org/whl/cu129
# 2. mlmm-toolkit (editable from a local clone, or `pip install mlmm-toolkit`)
pip install -e .
# 3. Authenticate Hugging Face once (only required for the default UMA backend)
# Accept the FAIR Chemistry License v1 at https://huggingface.co/facebook/UMA, then:
hf auth login # interactive
# OR: export HF_TOKEN=hf_xxx && hf auth login --token "$HF_TOKEN" # CI / HPC
Avoid AmberTools conflicts: on clusters with a system AmberTools module loaded, run
module unload amberbefore installing to prevent a ParmEd conflict with the conda-installed AmberTools.
Optional extras (install only what you need):
| Extra | Adds |
|---|---|
[orb] / [aimnet] |
Orb / AIMNet2 MLIP backend — not HF-gated |
[dft] |
PySCF + GPU4PySCF single-point DFT (--dft / mlmm dft); cost and memory depend on the system and method |
[mcp] |
Model Context Protocol server (mlmm-mcp) for agent clients |
[pdbfixer] |
PDBFixer extra (alternative to the conda install above) |
[openmm] |
OpenMM low-level backend, including virtual-site water models |
The MACE backend (-b mace) is not a pip extra: mace-torch pins e3nn==0.4.4, which conflicts with fairchem-core's e3nn>=0.5 (UMA), so it needs a dedicated environment — pip uninstall -y fairchem-core && pip install mace-torch (see docs/getting-started.md#installation).
CUDA module-load recipes, alternative-backend installs, DMF / cyipopt, Plotly Chromium, and HPC job-script templates: docs/getting-started.md and docs/device-hpc.md.
Preparing an Enzyme-Substrate System
For most systems the only hard requirement is a PDB with explicit hydrogens (at the intended protonation state). mlmm all then builds the MM topology, selects the ML region, and runs the whole pipeline in one command — see Quick Examples for the three input modes (multi-structure R → P, single-structure scan, TS-only). The preparation steps below are optional.
-
Build a structural model of the complex. Download coordinates from the Protein Data Bank. If an experimental structure is not available, use structure-prediction programs such as AlphaFold3, Boltz2, or Chai; docking programs; or GUI software such as PyMOL. Add hydrogens at the intended protonation state (or let
mm-parm --add-h --ph 7add them). For multi-structure (R → P) runs, every PDB must share the same atoms in the same order. -
(Optional) Build the MM topology yourself — it is automatic by default.
mlmm all(viamlmm mm-parm) generates the Amber.parm7/.rst7from the PDB automatically; unknown residues (ligands, cofactors) are parameterized with GAFF2 / AM1-BCC — pass formal charges with-l 'RES:CHARGE'. Build the topology by hand when it helps — a custom force field, special solvation, or a system the automatic route cannot handle — then pass it with--parm. To mimic aqueous conditions, solvate the complex and remove water molecules beyond ~6 Å (see the OpenMM cookbook / tleap). With an explicit--out-prefix(or--add-h),mm-parmalso exports LEaP's topology-matched PDB and fills missing element columns while preserving its atom records and order. -
(Optional) Define the ML region yourself.
mlmm allextracts the ML region from-c/--centerand-r/--radiusautomatically. To define it yourself instead, build an ML-region PDB — withmlmm extractor any molecular viewer — and feed it tomlmm all(or the per-stage subcommands) with--model-pdb; this skips the automatic extraction:mlmm extract -i complex.pdb -c 'SAM,GPP' -r 6.0 -l 'SAM:1,GPP:-3' -o ml_region.pdb
Important:
model.pdbmust be an unchanged subset of the full PDB/parm7atom topology. Preserve original atom order, names, residue IDs, and chain IDs; do not add link H manually. Terminate retained backbone fragments consistently at Cα (CA), put other ML/MM boundaries on aliphatic C–C single bonds whenever possible, and avoid peptide/polar/conjugated/metal bonds. Use the same selection for every R/IM/P state. (In PyMOL, tick "Original atom order" when exporting.) See How to constructmodel.pdb.ML-region precedence is explicit:
--model-pdbwins; otherwisealluses-c/--centerextraction, while per-stage commands may use--model-indicesor--detect-layer(B factors 0/10/20). You never specify link H for the normal case. The calculator finds everyparm7bond crossing the ML selection and inserts one link H there; Cartesian distance is used only to place that H along the known bond, not to decide whether a bond exists.--link-atom-methodselects scaled or fixed placement.
Quick Examples
# Multi-structure MEP (R + P → MEP, with TS + thermo + DFT)
mlmm all -i R.pdb P.pdb -c 'SAM,GPP' -l 'SAM:1,GPP:-3' --tsopt --thermo --dft
# Scan mode (single structure → staged bond scans → MEP)
mlmm all -i R.pdb -c 'SAM,GPP' -l 'SAM:1,GPP:-3' \
--scan-lists "[('SAM 359 CS1','GPP 360 C8',1.3)]"
# TS-only validation (existing TS candidate)
mlmm all -i TS_candidate_layered.pdb --parm complex.parm7 -q 1 --tsopt --opt-mode grad
For Gaussian-ONIOM / ORCA-QM/MM input-deck export and import use oniom-export / oniom-import. Per-stage walkthrough (mm-parm → extract → define-layer → opt → path-search → tsopt → freq → irc → dft): docs/getting-started.md and docs/quickstart-all.md. Working scripts (BezA, methyltransferase, and toy system): examples/.
Output
A run writes its deliverables to --out-dir (default ./result_all/):
segments/seg_NN/{reactant,ts,product}.pdbfor MEP-oriented segments; TS-only mode writes chemically unassigned{e1,ts,e2}.pdbmep.pdb/mep_trj.xyz— the merged reaction path;energy_diagram_MEP.png— barrier diagramsummary.log/summary.json- Reusable inputs for follow-up runs:
ml_region.pdb(--model-pdb),mm_parm/*.parm7(--parm),layered/(B-factor-annotated full-system PDBs) - Directly inspectable model systems before/after link-H insertion:
ml_region_without_linkH.xyzandml_region_with_linkH.xyz, plus matching PDB companions for PDB input
Pipeline scratch lives under _work/ (safe to delete). Full layout and filename conventions: docs/output-layout.md.
CLI Subcommands
| Subcommand | Role | Doc |
|---|---|---|
all (default) |
End-to-end: extract → MM topology/layers → MEP → TS → IRC → freq → DFT | all |
mm-parm |
Generate parm7/rst7 via AmberTools | mm-parm |
extract |
Extract active-site pocket | extract |
define-layer |
Assign 3-layer ML/MM B-factor encoding | define-layer |
add-elem-info / fix-altloc |
Repair PDB element columns / resolve altlocs | add-elem-info · fix-altloc |
opt / tsopt |
Geometry / TS optimization | opt · tsopt |
path-opt / path-search |
MEP via GSM/DMF; recursive refinement | path-opt · path-search |
scan / scan2d / scan3d |
1D / 2D / 3D bond-distance scans | scan · scan2d · scan3d |
freq / irc |
Vibrational analysis + thermo / IRC (EulerPC) | freq · irc |
dft / sp |
Single-point DFT / single-point ML/MM ONIOM | dft · sp |
bond-summary |
Compare structures, report bond changes | bond-summary |
trj2fig / energy-diagram |
Energy plot / R→TS→P diagram | trj2fig · energy-diagram |
oniom-export / oniom-import |
Gaussian ONIOM / ORCA QM/MM input-deck exchange | oniom-export · oniom-import |
3-layer system (ML / Movable-MM / Frozen-MM, B-factor encoded), link-atom treatment, and units (energy: eV or Hartree; coordinates: Å or Bohr; forces: eV/Å or Hartree/Bohr): docs/concepts.md. Python API (MLMMCore, MLMMASECalculator, pysisyphus mlmm calculator): docs/python-api.md.
Getting Help
mlmm --help # top-level
mlmm <subcmd> --help # core options
mlmm <subcmd> --help-advanced # full option set
Issues: https://github.com/t-0hmura/mlmm_toolkit/issues.
Citation
@article{ohmura2025mlmm,
author = {Ohmura, Takuto and Inoue, Sei and Terada, Tohru},
title = {ML/MM Toolkit -- Toward Accelerated Mechanistic Investigation of Enzymatic Reactions},
year = {2025}, journal = {ChemRxiv}, doi = {10.26434/chemrxiv-2025-jft1k}
}
Agent Skills
Agent Skills for Claude Code / Codex / Cursor etc. in skills/ — copy into your project's skill location (e.g. .claude/skills/) to let an agent drive mlmm-toolkit workflows and subcommands.
Known limitations
- MACE + UMA cannot coexist (
e3nnversion conflict). Use separate conda envs. - DFT single-point cost and practical region size depend on method, basis, hardware, memory, and system; benchmark the intended setup before production.
- MLIP backends can differ in stationary-point curvature; validate the selected backend on representative structures and inspect the modes.
- CPU-only execution may be substantially slower than GPU depending on the
backend and system; AmberTools (
tleap) is required formm-parm.
Contributing
Issues and pull requests are welcome — see CONTRIBUTING.md.
License
GNU General Public License version 3 or later (GPL-3.0-or-later).
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mlmm_toolkit-0.3.3.tar.gz.
File metadata
- Download URL: mlmm_toolkit-0.3.3.tar.gz
- Upload date:
- Size: 3.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5aeac20ce078797188854b78f566e40189080e44fc7eb302492e05a93cb7594
|
|
| MD5 |
a4bf93ee3a5f5f4b9527aba23f875237
|
|
| BLAKE2b-256 |
a0ea4cdbb23bb79bed633a3d4e161ca0a6380c7818370db6291ca5ca1efecbe8
|
Provenance
The following attestation bundles were made for mlmm_toolkit-0.3.3.tar.gz:
Publisher:
release.yml on t-0hmura/mlmm_toolkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mlmm_toolkit-0.3.3.tar.gz -
Subject digest:
c5aeac20ce078797188854b78f566e40189080e44fc7eb302492e05a93cb7594 - Sigstore transparency entry: 2652013821
- Sigstore integration time:
-
Permalink:
t-0hmura/mlmm_toolkit@8b75b7ffc347f1b5a563cbe76a91e80ab03e09a3 -
Branch / Tag:
refs/tags/v0.3.3 - Owner: https://github.com/t-0hmura
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8b75b7ffc347f1b5a563cbe76a91e80ab03e09a3 -
Trigger Event:
release
-
Statement type:
File details
Details for the file mlmm_toolkit-0.3.3-py3-none-any.whl.
File metadata
- Download URL: mlmm_toolkit-0.3.3-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d19006503e113ac347433ee63cd665d4aff825b6c6e3a8b6ce0ffe5e4aa2474
|
|
| MD5 |
fc89066c235b7feac2928f3f578c4edb
|
|
| BLAKE2b-256 |
29b9bb4c908a084c1a0fa696f788402d21267802b9c25b238d7f502eafc0066c
|
Provenance
The following attestation bundles were made for mlmm_toolkit-0.3.3-py3-none-any.whl:
Publisher:
release.yml on t-0hmura/mlmm_toolkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mlmm_toolkit-0.3.3-py3-none-any.whl -
Subject digest:
9d19006503e113ac347433ee63cd665d4aff825b6c6e3a8b6ce0ffe5e4aa2474 - Sigstore transparency entry: 2652013859
- Sigstore integration time:
-
Permalink:
t-0hmura/mlmm_toolkit@8b75b7ffc347f1b5a563cbe76a91e80ab03e09a3 -
Branch / Tag:
refs/tags/v0.3.3 - Owner: https://github.com/t-0hmura
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8b75b7ffc347f1b5a563cbe76a91e80ab03e09a3 -
Trigger Event:
release
-
Statement type: