Common Error Recipes¶
Use this page when you know the symptom but do not know which subcommand page to open first. For full details, keep Troubleshooting open in parallel.
Quick routing¶
Each row deep-links into the relevant Troubleshooting section via the section title in the Then read column.
Symptom |
Start here |
Then read (section in |
|---|---|---|
Missing element columns / extraction aborts |
|
|
“Charge is required” errors |
Set |
|
Energies/states look wrong after a run |
Re-check charge/multiplicity policy in CLI conventions |
|
DMF mode import errors ( |
Run |
|
TSOPT does not converge |
For LBFGS/Dimer: reduce |
|
IRC does not terminate |
Reduce |
|
Opt/TSOPT hits |
Usually handled automatically by the |
|
MEP search (GSM/DMF) fails |
Increase |
|
CUDA/GPU runtime mismatch |
Verify |
|
Plot export failures |
Run |
Recipe 1: Extraction fails before MEP starts¶
Signal:
Errors mention missing element symbols, atom-count mismatch, or empty active site models (binding pockets).
First checks:
Confirm all inputs are prepared by the same workflow and atom ordering is consistent.
Ensure element columns are present before running
extractorall.
Typical fix path:
Repair elements with
pdb2reaction add-elem-info -i input.pdb -o input_fixed.pdb-> rerun extraction -> confirm active site model size (--radius) and residue inclusion (--selected-resn). See --selected-resn takes residue IDs, not names in CLI Conventions for the residue-ID requirement.
Recipe 2: Charge/spin validation fails¶
Signal:
Errors mention unresolved charge, especially for non-
.gjfinputs.
First checks:
Ensure net charge and multiplicity are physically correct for the target state.
If using residue maps, validate each residue key in
--ligand-charge/-l.Verify the resolution rules in CLI Conventions when results look physically inconsistent.
Typical fix path:
Prefer explicit
-q/--chargeor--ligand-charge/-land-mfor critical runs, then retry scan/path/tsopt.
Recipe 3: Environment blockers¶
Signal:
DMF import failures, CUDA mismatch, or unavailable plotting backends.
First checks:
Confirm optional dependencies are installed in the active env.
Validate GPU visibility and PyTorch CUDA compatibility.
Typical fix path:
Repair environment first, verify with
pdb2reaction --versionandpython -c "import torch; print(torch.cuda.is_available())", then rerun with--dry-runbefore full execution.
Recipe 4: Convergence and post-processing failures¶
Signal:
TSOPT stalls, IRC branches look unstable, or MEP refinement stops unexpectedly.
First checks:
Confirm TS candidate quality: exactly one imaginary frequency with |ν| ≥ 100 cm⁻¹, and the corresponding imaginary mode shows displacement along the reaction coordinate. See Imaginary-mode thresholds: 5 cm⁻¹ vs 100 cm⁻¹ in the glossary for the 5 cm⁻¹ detection threshold vs 100 cm⁻¹ quality gate.
Tune step sizes / trust radii (YAML knobs
max_step,trust_radius/trust_min/trust_max) and optimizer mode / flattening (CLI flags--opt-mode,--flatten); these are complementary. For YAML section layout see YAML Reference; for the canonical fix path see Calculation / convergence problems.If the run stops at
max_cycleswhile the force is only barely above the threshold (and the energy has flattened), see Calculation / convergence problems — theopt.energy_plateaufallback (new in v0.3.5) handles this automatically.
Typical fix path:
Run a smaller diagnostic case, tune thresholds/step sizes, then scale back up.