GLOMOS
GLobal Optimization of MOlecular Systems — a genetic algorithm for the global optimization of atomic clusters and molecules, built on top of AEGON.
GLOMOS orchestrates the genetic algorithm (initial population, crossover, mutation, fitness-proportional selection, structural deduplication, stop criteria) and delegates every energy evaluation and local optimization to AEGON's calculator registry. GLOMOS itself never talks to a quantum chemistry code or a potential directly — it only calls aegon.calculators.build(calc_type, **kwargs), so any calculator AEGON supports is automatically available to the genetic algorithm.
Table of Contents
- Features
- Installation
- Dependencies
- The INPUT file
- Supported calculators
- Stochastic kick search
- Genetic algorithm search
- Rotamer / conformer search
- Citation
- Authors
- License
Features
- Three search drivers —
heuristic_kick.py(staged local-opt + discrimination, no evolutionary operators),heuristic_ga.py(roulette-wheel GA over clusters/crystals),heuristic_ga_rotamers.py(GA over dihedral angles for conformer search). - Calculator-agnostic — every driver dispatches through AEGON's registry: LJ, Sutton-Chen, TiO2, EMT, ANI, Gaussian, ORCA, MOPAC, GULP, VASP, selected by a single
calculatorkey. - Unit-consistent — one
unitskey (eV/atomic/kcal) fixes energy and force together across every calculator. - Plain-text input files —
INPUT_GLOMOS_<CALCULATOR>_<ALGORITHM>_<SYSTEM>.txt(GEGA/KICK/RTMR), same convention assolids/examples.
Installation
pip install glomos
Requires Python >= 3.10. GLOMOS depends on AEGON with the [ani] extra (installs torch/torchani for the ANI calculator); no separate installation step is needed.
Dependencies
| Package | Role |
|---|---|
aegon [ani] |
Structure generation, GA operators, unit conversion, and the calculator registry (LJ, SC, TiO2, EMT, ANI, Gaussian, ORCA, MOPAC, GULP, VASP) |
All other dependencies (ASE, NumPy, SciPy, Numba, Pydantic, PyYAML, joblib, torch, torchani) come transitively through aegon[ani].
The INPUT file
GLOMOS reads a plain-text input file with a composition block and key-value
parameters (parsed by aegon.libstdio.read_main_input):
---COMPOSITION---
H 4
O 2
---COMPOSITION---
#EVOLUTIVE PARAMETERS:
nof_initpop 4 #Initial Population
nof_matings 2 #Number of matings
nof_mutants 2 #Number of mutants
#ENERGY UNITS: eV | atomic (Eh) | kcal (kcal/mol)
units kcal #sets energy AND force units together
#DISCRIMINATION PARAMETERS:
tol_similarity 0.96
tol_energy 0.10
cutoff_energy 10.0
cutoff_population 10
#STOP CRITERION:
nof_generations 10
nof_repeats 3
nof_stagnant 5
#THEORY LEVEL:
calculator GAUSSIAN
nof_processes 4
#OUTPUT FILE:
initial_file initial.xyz
output_file summary.xyz
Calculator-specific keys (metal_symbol for SC, ani_model for ANI,
vasp_potcar/vasp_latsp for VASP, the ---GAUSSIAN---/---ORCA---/
---MOPAC---/---GULP---/---VASP--- route blocks) apply only to the
calculator selected. Binary paths and scratch folders come from AEGON's site
configuration (python -m aegon.config show), not from this file.
Every run prints a warning for any key or block present in the INPUT file but
never actually read by the algorithm/calculator combination selected — e.g. a
typo, a key that only applies to a different calculator, or a stop-criterion
key from KICK left over after switching an INPUT file to GEGA. Silent
otherwise.
Supported calculators
calculator |
Backend | Native units | KICK | GEGA | RTMR | Notes |
|---|---|---|---|---|---|---|
LJ |
aegon.libcalc_lj |
eV | ✅ | ✅ | — | Generic Lennard-Jones, no external binary |
SC |
aegon.libcalc_sc |
eV | ✅ | ✅ | — | Sutton-Chen; requires metal_symbol |
TIO2 |
aegon.libcalc_tio2 |
eV | ✅ | ✅ | — | Buckingham + Coulomb + LJ for TiO2 |
EMT |
aegon.libcalc_emt |
eV | ✅ | ✅ | — | ASE Effective Medium Theory; Al, Ni, Cu, Pd, Ag, Pt, Au |
ANI |
aegon.libcalc_ani |
kcal/mol | ✅ | ✅ | ✅ | Machine-learned potential (ANI1x/ANI1ccx/ANI2x); requires aegon[ani] |
GAUSSIAN |
Gaussian 16 | kcal/mol | ✅ | ✅ | ✅ | External binary |
ORCA |
ORCA | kcal/mol | ✅ | ✅ | ✅ | External binary |
MOPAC |
MOPAC | kcal/mol | ✅ | ✅ | ✅ | External binary |
GULP |
GULP | eV | ✅ | ✅ | — | External binary; periodic and cluster-in-vacuum-box |
VASP |
VASP | kcal/mol | ✅ | ✅ | — | External binary; periodic, requires POTCAR |
RTMR is limited to ANI/GAUSSIAN/ORCA/MOPAC — the rest have no
organic-molecule parameterization or are otherwise not the tool for a
conformer search.
Stochastic kick search
heuristic_kick.py: a population goes through number_of_stages local-opt +
discrimination passes, no crossover/mutation. Template-driven engines
(Gaussian, ORCA, MOPAC, GULP, VASP) take one input block per stage
(---GULP1---/---GULP2---, ---INCAR1---/---KPOINTS1--- for VASP), so
stages can run at different levels of theory.
from glomos.heuristic_kick import stochastic_kick
population = stochastic_kick('INPUT_GLOMOS_LJ_KICK_Mo8.txt')
Examples: x_run_glomos_{lj,sc,tio2,emt}_kick_{mo8,cu8,tio2,au8}.py,
..._gulp_kick_cu8.py, ..._{ani,orca,gaussian,vasp}_kick_h2o.py (seeded
from the matching GEGA run's summary.xyz), ..._mopac_kick_si5o6.py
(MNDO, self-generated population — see Genetic algorithm search),
and ..._gaussian_kick_b10.py (multi-stage boron refinement).
Genetic algorithm search
heuristic_ga.py: roulette-wheel crossover/mutation, energy-cutoff + USR
deduplication, stop on max generations / repeated isomers / stagnant cycles.
from glomos.heuristic_ga import genetic_algorithm
population = genetic_algorithm('INPUT_GLOMOS_GAUSSIAN_GEGA_H2O.txt')
for mol in population[:5]:
print(mol.info['i'], mol.info['e'], mol.info['c'])
Population is written to output_file after every generation. Examples:
x_run_glomos_{lj,sc,tio2,emt}_gega_{mo8,cu8,tio2,au8}.py,
..._gulp_gega_cu8.py, ..._{ani,orca,gaussian,vasp}_gega_h2o.py,
..._mopac_gega_si5o10.py (MNDO).
nof_opt_attempts (default 1, same key and semantics as KICK above) retries
any structure whose info['c'] isn't 1 — i.e. the calculator's job didn't
reach a real stationary point — from its current geometry, up to that many
total attempts, before it's allowed into fitness-proportional selection.
Applies to both the initial population and every generation's crossovers/
mutants, and works the same way for every calculator in the registry (not
just the external QM codes): info['c'] is set uniformly by every
*CalculatorStrategy.optimize_parallel(), so the retry loop only depends on
that, never on which calculator produced it.
Running several searches in sequence
from glomos.heuristic_ga import genetic_algorithm
genetic_algorithm('INPUT_GLOMOS_LJ_GEGA_Mo8.txt')
genetic_algorithm('INPUT_GLOMOS_SC_GEGA_Cu8.txt')
genetic_algorithm('INPUT_GLOMOS_GAUSSIAN_GEGA_H2O.txt')
Rotamer / conformer search
heuristic_ga_rotamers.py: a GA over dihedral angles of a single molecule.
Rotatable bonds are identified from the molecular graph of a rotamer_seed
XYZ file; no COMPOSITION block.
from glomos.heuristic_ga_rotamers import conformational
population = conformational('INPUT_ROTAMERS.txt')
calculator is ANI (ani_model selects ANI1x/ANI1ccx/ANI2x), MOPAC,
GAUSSIAN, or ORCA.
examples/INPUT_GLOMOS_MOPAC_RTMR_C8H9NO2.txt/..._ANI_RTMR_C8H9NO2.txt— paracetamol,ANI1ccx.examples/INPUT_GLOMOS_GAUSSIAN_RTMR_C2H6O.txt/..._ORCA_RTMR_C2H6O.txt— ethanol, PBE0/Def2SVP.
Citation
If you use GLOMOS in your research, please cite the associated manuscript (in preparation), and the AEGON backend it builds on:
López-Castro C., Ortiz-Chi F., Merino G. An Efficient Growth Pattern Algorithm (GrowPAL) for Cluster Structure Prediction. J. Chem. Theory Comput. 2024, 20, 4939–4948.
Authors
- Aileen Garcia Cano — Facultad de Ingeniería, Universidad Autónoma de Yucatán, Mérida, México
- Gabriel Merino — Departamento de Física Aplicada, Cinvestav-IPN, Mérida, México
- Filiberto Ortiz-Chi — Secihti-Departamento de Física Aplicada, Cinvestav-IPN, Mérida, México
License
See LICENSE.
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 glomos-0.3.1.tar.gz.
File metadata
- Download URL: glomos-0.3.1.tar.gz
- Upload date:
- Size: 23.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f60f56c17e78c85e87b7f07a4e8743a96e9cc4dbef3ce2f7870ad9f816e631ba
|
|
| MD5 |
0d9cb62c437709634f4191bd398bbf71
|
|
| BLAKE2b-256 |
f5fbd13ed16698df048986ae0f092ea9fbc5363631abda4927d24e8432d4bb48
|
File details
Details for the file glomos-0.3.1-py3-none-any.whl.
File metadata
- Download URL: glomos-0.3.1-py3-none-any.whl
- Upload date:
- Size: 20.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65d773cae64495100b7f16352c6323f7e8643a034b6faf6e4f8b61ff1ff77d8e
|
|
| MD5 |
9cfac821f952d4f32f2633769815ff69
|
|
| BLAKE2b-256 |
6416ce47108e9ddb888453f16dfa7d89b0d05e608a95db99c908966f9b12c339
|