Protein-ligand binding process analysis with MSM#

In this tutorial, we demonstrate how to use the HTMD code for analysing a protein-ligand binding process.

To analyze, one needs MD trajectories first, which can be generated with HTMD. Here, we already provide the trajectories (data) to analyze. You can download the data from here. (Warning: 3GB filesize)

Alternatively, you can download the dataset using wget.

import os
assert os.system('wget -rcN -np -nH -q --cut-dirs=2 -R index.html* http://pub.htmd.org/tutorials/ligand-binding-analysis/datasets/') == 0

Getting started#

First we import the modules we are going to need for the tutorial:

%pylab inline
from htmd.ui import *
config(viewer='webgl')
%pylab is deprecated, use %matplotlib inline and import the required libraries.
Populating the interactive namespace from numpy and matplotlib
2022-12-19 14:07:47,370 - numexpr.utils - INFO - Note: NumExpr detected 12 cores but "NUMEXPR_MAX_THREADS" not set, so enforcing safe limit of 8.
2022-12-19 14:07:47,371 - numexpr.utils - INFO - NumExpr defaulting to 8 threads.
Please cite HTMD: Doerr et al.(2016)JCTC,12,1845. https://dx.doi.org/10.1021/acs.jctc.6b00049
HTMD Documentation at: https://software.acellera.com/htmd/

You are on the latest HTMD version (unpackaged : /home/sdoerr/Work/htmd/htmd).

Creating a simulation list#

For the purposes of an analysis, full atom information is required by HTMD. Therefore each simulation trajectory has to be associated with a corresponding PDB file. Additionally, if you plan to run adaptive, each trajectory needs to be associated with an input directory which contains the files used to run the simulations. The simlist function allows us to make these associations

sims = simlist(glob('data/*/'), glob('input/*/structure.pdb'), glob('input/*/'))

Filtering trajectories#

Typically waters are removed from the trajectories as they are not used in the analysis and it helps speed up further calculations. These filtered trajectories are written into a new directory. The advantage of filtering is that if your input structures only differ in the number of water molecules, you can produce a single unique pdb file for all simulations once you remove the waters, which will speed up calculations. This step is not necessary for the analysis and you can skip it if you don’t mind the slowdown in calculations. In that case replace in the following commands the fsims variable with sims.

fsims = simfilter(sims, './filtered/', filtersel='not water')

In this tutorial, in order for the trajectories to be downloaded in a timely manner, we provide only the filtered trajectories, which are stored in three separate dataset folders. Therefore we will skip the above two commands and construct the simulation list directly from the filtered trajectories:

sets = glob('ligand_binding_datasets/*/')
sims = []
for s in sets:
    fsims = simlist(glob(s + '/filtered/*/'), 'ligand_binding_datasets/1/filtered/')
    sims = simmerge(sims, fsims)
Creating simlist: 100%|████████████████████████████████████████████████████████████████████████████████████████████████| 230/230 [00:03<00:00, 68.84it/s]
Creating simlist: 100%|████████████████████████████████████████████████████████████████████████████████████████████████| 314/314 [00:04<00:00, 69.11it/s]
Creating simlist: 100%|████████████████████████████████████████████████████████████████████████████████████████████████| 309/309 [00:04<00:00, 69.52it/s]

Calculating metrics#

To build a Markov state model we need to project the atom coordinates onto a lower dimensional space which can be used for clustering the conformations into a set of states. For protein systems we typically use the binary contact map between the carbon alpha atoms of the protein. This will calculate contacts between all carbon-alpha atoms.

metr = Metric(sims)
metr.set(MetricDistance('protein and name CA', 'resname MOL and noh', periodic='selections', metric='contacts'))
data = metr.project()
Projecting trajectories: 100%|█████████████████████████████████████████████████████████████████████████████████████████| 852/852 [02:54<00:00,  4.88it/s]
2022-12-19 14:10:59,224 - htmd.projections.metric - INFO - Frame step 0.001ns was read from the trajectories. If it looks wrong, redefine it by manually setting the MetricData.fstep property.

Here, we also provide the frame-step in nanoseconds i.e. the time that passes between two consecutive frames in a trajectory. This should be automatically read from the trajectories, but some simulation software does not contain the correct fstep in the trajectories, so it can be useful to manually define it:

data.fstep = 0.1

Removing trajectories#

Sometimes the set of trajectories can contain trajectories of incorrect length. These are typically corrupted trajectories and are removed.

The plotTrajSizes method plots all trajectory lengths, sorted:

data.plotTrajSizes()
../../_images/ligand-binding-analysis_19_0.png

The dropTraj method has multiple options for removing simulations from the dataset. Here, we use it to remove all trajectories whose length is not equal to the mode length:

data.dropTraj()
2022-12-19 14:10:59,496 - htmd.metricdata - INFO - Dropped 2 trajectories from 852 resulting in 850
array([726, 792])

TICA#

TICA is a method that can be used to improve the clustering of the conformations. This is done by projecting the data onto a lower-dimensional space which separates well the metastable minima and places clusters on the transition regions.

tica = TICA(data, 2, units='ns')
dataTica = tica.project(3)

Bootstrapping#

If we want to bootstrap our calculations we can at this point drop a random 20% of the trajectories and do the rest of the analysis multiple times to see if the results are consistent. Alternatively we can keep on using dataTica in the following commands.

dataBoot = dataTica.bootstrap(0.8)

Clustering conformations#

Once we have cleaned the dataset we proceed to cluster the conformations.

Here we use the mini-batch kmeans clustering algorithm to produce 1000 clusters.

dataBoot.cluster(MiniBatchKMeans(n_clusters=1000))

Building the Markov model#

After clustering it is time to build the Markov model.

model = Model(dataBoot)

Before constructing the Markov model, we need to choose the lag-time at which it will be built. The lag-time is typically chosen by looking at the implied timescale (ITS) plot and selecting a lag-time at which the top timescales start converging. By constructing Markov models at various lag times HTMD creates a plot which shows the slowest implied timescales of each Markov model at various lag times. If a model is Markovian at a specific lag time, the implied timescales should stay unchanged for any higher lag times. Therefore, given an implied timescales plot, the user can monitor the convergence and choose the lag time at which to construct his Markov model, typically the Markov time which is the shortest lag time at which the timescales converge. Too large lag times can reduce the temporal resolution of the Markov model and can create more statistical uncertainty due to fewer transition counts and thus instability in the implied timescales.

model.plotTimescales(maxlag=15, units="ns")
Estimating Timescales: 100%|█████████████████████████████████████████████████████████████████████████████████████████████| 26/26 [04:11<00:00,  9.66s/it]
../../_images/ligand-binding-analysis_35_1.png

After seeing the ITS plot we decided on a lag-time of 50 frames (5ns). Additionally the ITS plot showed us that there is a separation between 4 slow timescales and the rest of the timescales which are fast. Therefore we choose to lump our microstates together into 5 macrostates.

model.markovModel(5, 5, units='ns')
2022-12-19 14:16:35,156 - htmd.model - INFO - 100.0% of the data was used
2022-12-19 14:16:35,217 - htmd.model - INFO - Number of trajectories that visited each macrostate:
2022-12-19 14:16:35,220 - htmd.model - INFO - [160 106 368 128 215]

Once we have a Markov model we can plot the free energy surface by projecting it on any of our projected coordinates. For example to plot it on the first two TICA coordinates we call it like this.

model.plotFES(0, 1, temperature=298)
100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 970/970 [00:01<00:00, 508.78it/s]
../../_images/ligand-binding-analysis_39_1.png

We can also plot the micro and macrostates on top of the FES by setting states=True

model.plotFES(0, 1, temperature=298, states=True)
100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 970/970 [00:01<00:00, 503.63it/s]
../../_images/ligand-binding-analysis_41_1.png

Visualizing the states#

To see what the states look like we can use the viewStates method. We load the macrostates and add a ligand representation using the ligand atomselection.

model.viewStates(ligand='resname MOL and noh')
Getting state Molecules: 100%|█████████████████████████████████████████████████████████████████████████████████████████████| 5/5 [00:03<00:00,  1.54it/s]
HBox(children=(Checkbox(value=True, description='macro 0'), Checkbox(value=True, description='macro 1'), Check…
NGLWidget()

Calculating the kinetics#

One of the major advantages of Markov state models is that they can provide quantitative results about the kinetics between states.

Provide the Kinetics class with the system temperature and ligand concentration. It automatically then calculates the source and sink states.

kin = Kinetics(model, temperature=298, concentration=0.0037)
2022-12-19 14:16:48,911 - htmd.kinetics - INFO - Detecting source state...
2022-12-19 14:16:50,256 - htmd.kinetics - INFO - Guessing the source state as the state with minimum contacts.
2022-12-19 14:16:50,258 - htmd.kinetics - INFO - Source macro = 2
2022-12-19 14:16:50,259 - htmd.kinetics - INFO - Detecting sink state...
2022-12-19 14:16:50,262 - htmd.kinetics - INFO - Sink macro = 4

To see the rates between the source and sink states we use the getRates method.

r = kin.getRates()
print(r)
2022-12-19 14:16:50,269 - htmd.kinetics - INFO - Calculating rates between source: [2] and sink: [4] states.
2022-12-19 14:16:55,999 - htmd.kinetics - INFO - Concentration correction of -3.32 kcal/mol.
mfpton = 1.07E+03 (ns)
mfptoff = 5.47E+03 (ns)
kon = 2.52E+08 (1/M 1/s)
koff = 1.83E+05 (1/s)
koff/kon = 7.24E-04 (M)
kdeq = 5.77E-04 (M)
g0eq = -4.42 (kcal/M)

To plot the free energies and mean first passage times of all state relative to the source state, use the plotRates method:

kin.plotRates()
../../_images/ligand-binding-analysis_51_0.png ../../_images/ligand-binding-analysis_51_1.png ../../_images/ligand-binding-analysis_51_2.png

To visualize the kinetic flux pathways between the source and sink states, use the plotFluxPathways method:

kin.plotFluxPathways()
../../_images/ligand-binding-analysis_53_0.png
Path flux           %path   %of total       path
0.0005005312702891457       60.7%   60.7%           [2 4]
0.00032321008240938616      39.2%   99.9%           [2 3 4]
1.1631331133444164e-06      0.1%    100.0%          [2 1 4]

And this concludes the ligand binding tutorial.