pyCHARMM tutorial, documentation and examples. This repository contains materials originally from the pyCHARMM Workshop run at the University of Michigan by Charles Brooks' Group, June 20-24.

BrooksResearchGroup-UM BrooksResearchGroup-UM Last update: Apr 26, 2024

Preface

This repository contains a working set of examples, current documentation and details of compiling and running pyCHARMM. The materials here are part of a growing repository for examples and tutorials on using pyCHARMM. As we evolve the program, expand its example base and run new workshops based on pyCHARMM, we anticiapte this repository will grow.

We note that pyCHARMM is now part of CHARMM distribution - free of charge to academic and government/non-profit labs. The CHARMM/pyCHARMM source is available through academic licensing at academiccharmm.org.

pyCHARMM Workshop

Date: June 20-24, 2022

Time: 4:00 - 5:30 PM EDT

Location: Chem 1706

Preliminaries

For those who do not have access to gollum or would like to set up their own conda environment for pycharmm, clone this repo and create the conda environment by

cd pyCHARMM-Workshop/
conda create -n pyCHARMM -c conda-forge -c schrodinger \
pymol rdkit jupyterlab openbabel openmm
conda activate pyCHARMM

We will utilize pyCHARMM from the current developers stream. If you are working on gollum you can link to the pyCHARMM version I compiled using (tsch):

export CHARMM_HOME=/home/brookscl/charmm/c47-dev-release/
export CHARMM_LIB_DIR=$CHARMM_HOME/install-pycharmm-nompi/lib

Install pyCHARMM in the conda environment using pip

pip install $CHARMM_HOME/tool/pycharmm

Building pyCHARMM

If you are building pyCHARMM in your local environment (assuming Linux, gcc (I use v7.3), NVIDIA drivers (I use cuda v10.0)/gpu access with OpenMM already installed), in the CHARMM directory:

mkdir -p build_charmm; cd build_charmm
../configure --with-blade --with-fftdock --without-mpi \
--as-library -p ../install-pycharmm-nompi
make -j 2 -C install

Following this you will need to set the environment variable CHARMM_LIB_DIR as noted above to point to your install library directory, and install the pyCHARMM modules using pip.

pip install ../tool/pycharmm
export CHARMM_LIB_DIR=/path/to/charmm_dir/install-pycharmm-nompi/lib

Required modules/codes:

In the workshop examples you will find below the following tools are used.

  1. MMTSB Toolset is utilized and should be installed .
  2. propKa will be utilized.
  3. pymol will be utilzied locally to view structures.

Using jupyter-lab locally

If you have pycharmm installed locally in the pyCHARMM virtual environment, you can start a jupyter-lab by typing jupyter lab in the same conda environment.

If working through examples use the following order

  1. FirstExample - build an alanine dipeptide and solvate it
  2. ProteinDynamics - set-up solvated protein system and run dynamics on it
  3. SimpleMPIExample - use mpi to compute alanine dipeptide energy surface and plot it
  4. AbsoluteSolvation - Distributed (mpi) calculation of the solvent half of the absolute solvation free energy using MBAR and BAR
  5. Aladipeptide_HFBString_MPI - Construct minimum energy path for $\phi,\psi$ conformational transition in alanine dipeptide using HFB-String approach and mpi task distribution
  6. ReplicaExchangeExample - Compute the free energy change for charging a residue in vacuum with replica exchange $\lambda$-windowing distributed simulations using mpi
  7. CDOCKER_Tutorial - Tutorial on using CDOCKER pyCHARMM implementation for flexible ligand - rigid receptor and flexible ligand - flexible receptor docking
  8. DrudeExample - Simple example of setting-up and using Drude oscillator polarizable model
  9. NeuralNetExample - Use of TorchANI machine learned quantum chemistry potentials in CHARMM calculations through pyCHARMM
  10. msld_py_prep_Tutorial - Tutorial on setting-up and using MS $\lambda$ D free energy calculations with py_prep

Workshop Agenda

Monday 4:30 - 5:30 PM

Introduction to CHARMM, how to build pyCHARMM and first steps in setting up molecular simulations with pyCHARMM, selecting atoms and basic manipulations of the PSF using pyCHARMM.

Tuesday 4:00 PM - 5:30 PM

Setting up solvated molecular dynamics simulations, using OpenMM, BLaDE GPU accelerated simulation engines for molecular dynamics.

Wednesday 4:30 - 5:30 PM

Using pyCHARMM CDOCKER for rigid-receptor, flexible ligand and flexible-receptor, flexible ligand docking.

Thursday 4:00 - 5:30 PM

Free energy simulations i) absolute solvation free energy calculations; ii) setting-up MSλD with msld-py-prep and pyCHARMM.

Friday 4:00 - 5:30 PM

Advanced topics including integration of python tools with pyCHARMM, utilizing machine-learned potentials in pyCHARMM, parallelism in python with MPI.

Tags:

Subscribe to our newsletter