CryoJAX ensemble optimization is a module of the cryoJAX library, a JAX and Equinox-based library for differentiable cryo-EM forward models. The purpose of this library is to provide a framework for optimizing structural ensembles, defined as a weighted discrete set of atomic structures, given a set of cryo-EM images. To do this, we implement an algorithm inspired by projected gradient descent, where the optimization step is performed by comparing the ensemble to the cryo-EM dataset, and the projection step is done through Steered Molecular Dynamics using the popular OpenMM library. Details and results are available in our JCTC paper. Instructions for reproducing the paper results are provided below.
Full documentation is available at flatironinstitute.github.io/cryojax-ensemble-optimization.
Our library has been tested on the latest Ubuntu version. Availability for other platforms is dependent on the availability of OpenMM and JAX.
Our library can be installed to be used with a CPU via pip.
pip install cryojax_eoWe recommend using a freshly created virtual environment to install our library. A CPU installation is only recommended for dataset simulation, as OpenMM is built for GPU, and simulations will take a long time if run on CPU.
We recommend installing our library using conda (or one of its variants), as matching JAX's and OpenMM's CUDA versions can be difficult otherwise. Here we show an example of how to install our library with mamba:
mamba create -n cryojax_eo_env python==3.11
mamba activate cryojax_eo_env
mamba install -c conda-forge openmm cuda-version==12.4 # Insert your cuda version!
pip install --upgrade "jax[cuda12]"
pip install cryojax_eoTo find your CUDA version, you can run nvidia-smi in a terminal. The CUDA version will appear in the top right corner of the output.
Note: OpenMM is not required for all our utilities. Data simulation and Ensemble Reweighting only require JAX!
For HPC environments where conda is unavailable or installation is restricted, we provide an Apptainer definition file at container/cryojax_eo.def. We do not distribute pre-built images — build your own from the definition file, which also lets you match the CUDA version to your cluster's driver.
Note: On most HPC clusters, Apptainer or Singularity must be loaded as an environment module before use:
module load apptainer(ormodule load singularity). If neither works, check availability withmodule spider apptaineror contact your system administrator. Replaceapptainerwithsingularitybelow if that is what your cluster provides.
Step 1 — Check your CUDA version. Run nvidia-smi; the driver's CUDA version appears in the top-right corner. The definition file pins cuda-version==12.6 — if your driver is older, edit that line in container/cryojax_eo.def before building.
Step 2 — Build the image:
# Use sudo if available
sudo apptainer build container/cryojax_eo.sif container/cryojax_eo.def
# On HPC clusters where sudo is not available, use --fakeroot instead
apptainer build --fakeroot container/cryojax_eo.sif container/cryojax_eo.defThe build installs cryojax_eo from the main branch. To pin a release, append @v0.1.0 (or your tag of choice) to the git URL in the definition file's pip install line.
Step 3 — Run commands with the container:
apptainer exec --nv --bind /path/to/data:/path/to/data path/to/container/cryojax_eo.sif \
run_ensemble_optimization --config config.yamlThe --nv flag exposes the host GPU to the container. The --bind flag mounts a directory from the host into the container, which is required if your data lives outside your home directory (e.g., on a scratch or Ceph filesystem). Replace /path/to/data with the relevant path on your system.
To avoid typing --bind every time, you can set the following environment variable in your ~/.bashrc:
export APPTAINER_BIND=/path/to/data:/path/to/dataSee the input documentation
See the input documentation
See the input documentation
All the necessary data, atomic models, config files, and instructions to reproduce our results are available in Zenodo and Dryad. These results were obtained with version 0.2.3 of cryojax-eo.
Please submit any bug reports, feature requests, or general feedback as a GitHub issue or discussion.
If you are contributing to this project, please install the package with the following command:
pip install -e ".[dev]"This will install the required dependencies for development, the most important being Ruff and pre-commit. After installation, activate your environment and install the pre-commit hooks by running
pre-commit install
Make sure that your code is formatted according to our guidelines by running:
pre-commit run --all-filesThis will make sure the code is formatted correctly, fix whatever can be automatically fixed, and tell you if something else needs to be fixed.
We thank Michael O'Brien, Miro Astore, Lars Dingeldein, Wai Shing Tang, Aaditya Rangan, and Sonya Hanson for helpful discussions.