Connect with us

MD Simulation

Tutorial: MD Simulation of small organic molecules using GROMACS

Dr. Muniba Faiza

Published

on

MD Simulation of small molecules

GROMACS [1] offers a vast range of functions when it comes to molecular dynamics simulation. Today, we are going to explore it for the simulation of small organic molecules.

In this tutorial, we are going to simulate ascorbic acid using GROMACS. We need to generate a topology for the molecule, then the resultant files will be used for simulation. It requires a bit of modification of the files as explained in the following sections.

1. Obtaining the molecule structure

You can either draw your molecule using different software such as Marvin Sketch or download it from Pubchem if available. We need the structure in mol2 format for topology generation. So, export your molecule in PDB and mol2 format. If you have a PDB file, then you can use Pymol for file conversion. But be careful while you are drawing your structure yourself. Because it may lead to several errors such as ‘UNKNOWN BOND_ATOMTYPE’, etc., during the simulation process.

2. Preparing force field

You can select an appropriate force field according to your molecule. We are going to use the CHARMM36 force field.

$ wget http://mackerell.umaryland.edu/download.php?filename=CHARMM_ff_params_files/charmm36-jul2020.ff.tgz 

$ tar xvzf charmm36-jul2020.ff.tgz

You will see a subdirectory “charmm36-jul2020.ff” created in your working directory.

3. Preparing the molecule

I have downloaded the molecule from Pubchem in SDF format and then converted it into mol2 format using Avogadro [2, 3] as shown below:

  1. Open Avogadro
  2. Open --> asc.pdb
  3. Go to Build --> Add Hydrogens
  4. Go to File --> Save as --> SYBYL mol2
  5. Save it as asc.mol2.

The asc.mol2 file needs to be corrected before subjecting to topology generation.

Open the asc.mol2 file in an editor and do the following:

  1. Replace “*****” with asc as shown below (after step-4).
  2. Make sure the residue name and numbers are the same.
  3. Look into the @<TRIPOS>BOND section. We need to correct the bond order using a Perl script available here.
  4. Run the Perl script as $ perl sort_mol2_bonds.pl asc.mol2 asc_clean.mol2

For more details on this, read our previous article Tutorial: MD Simulation of a Protein-Ligand Complex using GROMACS. Read the topology generation of the ligand section.

Now, this cleaned file (asc_clean.mol2) will be used for topology generation.

4. Generating topology of the molecule

There are different programs available to generate the topology of molecules according to the force field you choose. For more details, read the above-mentioned article.

Since we are using the CHARMM force field, therefore, we will use the CGenff web server [4].

Register and create a free account on the CGenFF server. After uploading and submitting the asc_clean.mol2 file, it will give the asc_clean.str file as output. Download the file.

Now, since the asc topology is in CHARMM format, we need to convert in gmx to use in GROMACS for simulation. For that, download the “cgenff_charmm2gmx.py” script from here and run it as shown below. If you have python3 on your system, then use another script. Download it from here. Remember it also requires another package called NetworkX.

$ python cgenff_charmm2gmx.py asc asc_clean.mol2 asc_clean.str charmm36-jul2020.ff

If there is no error, it will display a message as shown below:

============ DONE ============
Conversion complete.
The molecule topology has been written to asc.itp
Additional parameters needed by the molecule are written to asc.prm, which needs to be included in the system .top
============ DONE ============

The topology and parameters of the molecule are written to asc.itp and asc.prm.

5. Defining box

We need our mol2 file in PDB format for the following command. Therefore, convert asc_clean.mol2 file into asc_clean.pdb. Now, we need to define a box around our molecule.

$ gmx editconf -f asc_clean.pdb -o asc.gro -box 3 3 3

6. Solvating the molecule

You may want to solvate your molecule in mixed solvents. Read this article for mixed solvents. Follow Step 4. in that tutorial for solvating using mixed solvents.

In this tutorial, we are using water only.

$ gmx solvate -cp asc.gro -cs spc216.gro -o asc_solv.gro -p asc.top

The added water molecules will reflect in the topology file (asc.top).

7. Energy Minimization

For this, an input parameter file is required, that can be downloaded from here. You might have to adjust some parameters in this file according to your simulating conditions.

$ gmx grompp -f em.mdp -c asc_solv.gro -p asc.top

Now, run the energy minimization using mdrun.

$ gmx mdrun -v

It will be finished in a few steps depending upon the number of steps provided. In order to know, whether the energy minimization was run successfully, the potential energy must be negative and Fmax must be less than 1000 KJ/mol/nm which was set as the maximum force in the em.mdp file.

You don’t need to perform NPT and NVT ensembles for small organic molecules. So, we will skip those steps.

8. Running MD Simulation

We will need an input file md.mdp which can be downloaded from here. We will run a 1 ns MD simulation which is just for the purpose of demonstration otherwise, optimally, 30 ns or 50/60 ns MD simulation is done. 30 ns should be enough but if RMSD is not a straight line then increase the duration of the MD run.

For more details regarding the number of steps, look into the previous tutorial [5].

$ gmx grompp -f md.mdp -c asc_solv.gro -p asc.top -o md_0_1.tpr

$ gmx mdrun -v

Since MD run takes a long time to finish, therefore, you would like to run for which you can use nohup command as shown below:

$ nohup gmx mdrun -v -deffnm md_0_1

You can check the status by using the command $ jobs or $ top.

This ends the simulation of small organic molecules using GROMACS. Wait for the job to finish and analyze the results.


References

  1. Abraham, M. J., Murtola, T., Schulz, R., Páll, S., Smith, J. C., Hess, B., & Lindahl, E. (2015). GROMACS: High performance molecular simulations through multi-level parallelism from laptops to supercomputers. SoftwareX1, 19-25.
  2. Avogadro: an open-source molecular builder and visualization tool. Version 1.XX. http://avogadro.cc/
  3. Marcus D Hanwell, Donald E Curtis, David C Lonie, Tim Vandermeersch, Eva Zurek and Geoffrey R Hutchison; “Avogadro: An advanced semantic chemical editor, visualization, and analysis platform” Journal of Cheminformatics 2012, 4:17.
  4. Vanommeslaeghe, K., Hatcher, E., Acharya, C., Kundu, S., Zhong, S., Shim, J., … & Mackerell Jr, A. D. (2010). CHARMM general force field: A force field for drug‐like molecules compatible with the CHARMM all‐atom additive biological force fields. Journal of computational chemistry31(4), 671-690.
  5. Muniba Faiza (2019). Tutorial: Molecular dynamics (MD) simulation using Gromacs. Bioinformatics Review, 5 (12). (https://bioinformaticsreview.com/20191210/tutorial-molecular-dynamics-md-simulation-using-gromacs/?v=c86ee0d9d7ed)

Dr. Muniba is a Bioinformatician based in New Delhi, India. She has completed her PhD in Bioinformatics from South China University of Technology, Guangzhou, China. She has cutting edge knowledge of bioinformatics tools, algorithms, and drug designing. When she is not reading she is found enjoying with the family. Know more about Muniba

MD Simulation

List of widely used MD Simulation Analysis Tools.

Dr. Muniba Faiza

Published

on

List of widely used MD Simulation Analysis Tools.

Molecular Dynamics (MD) simulation analysis involves interpreting the vast amounts of data generated during the simulation of molecular systems. These analyses are necessary to study the physical movements of atoms and molecules, the stability of molecular conformations, reaction mechanisms, and thermodynamic properties, among other aspects. In this article, we will give a brief overview of some widely used MD simulation analysis tools.

(more…)

Continue Reading

Bioinformatics Programming

Free_Energy_Landscape-MD: Python package to create Free Energy Landscape using PCA from GROMACS.

Dr. Muniba Faiza

Published

on

In molecular dynamics (MD) simulations, a free energy landscape (FEL) serves as a crucial tool for understanding the behavior of molecules and biomolecules over time. It is difficult to understand and plot a meaningful FEL and then extract the time frames at which the plot shows minima. In this article, we introduce a new Python package (Free_Energy_Landscape-MD) to generate an FEL based on principal component analysis (PCA) from MD simulation done by GROMACS [1].

(more…)

Continue Reading

MD Simulation

[Tutorial] Installing VIAMD on Ubuntu (Linux).

Dr. Muniba Faiza

Published

on

[Tutorial] Installing VIAMD on Ubuntu (Linux).

Visual Interactive Analysis of Molecular Dynamics (VIAMD) is a tool that allows the interactive analysis of molecular dynamics simulations [1]. In this article, we are installing it on Ubuntu (Linux).

(more…)

Continue Reading

MD Simulation

Energy minimization and equilibration of simple protein using NAMD & VMD.

Dr. Muniba Faiza

Published

on

Energy minimization and equilibration of simple protein using NAMD & VMD.

In this tutorial, we will perform energy minimization and equilibration of a simple protein using NAMD [1] & VMD [2]. We are using insulin (PDB ID: 2wfu) for this tutorial.

(more…)

Continue Reading

MD Simulation

Generating topology of molecule for AMBER forcefield for GROMACS.

Dr. Muniba Faiza

Published

on

Generating topology of molecule for AMBER forcefield for GROMACS.

In this article, we will generate the topology of a small molecule for AMBER forcefield to be used in MD simulation using GROMACS.

(more…)

Continue Reading

MD Simulation

How to visualize output plots of MD simulation (GROMACS)?

Dr. Muniba Faiza

Published

on

How to visualize output plots of MD simulation (GROMACS)?

Visualizing plots of molecular dynamics simulation is easy once you have generated them. Previously, we provided a few articles on MD output analysis (check the Further Reading section). This article explains how you can easily visualize the plots generated from GROMACS output. (more…)

Continue Reading

MD Simulation

How to solve ‘Could NOT find CUDA: Found unsuitable version “10.1”‘ error during GROMACS installation?

Dr. Muniba Faiza

Published

on

How to solve ‘Could NOT find CUDA: Found unsuitable version “10.1”‘ error during GROMACS installation?

Compiling GROMACS [1] with GPU can be trivial. Previously, we have provided a few articles on the same. In this article, we will solve an error frequently occurring during GROMACS installation.

(more…)

Continue Reading

MD Simulation

How to calculate number of steps (nsteps) for MD simulation run?

Dr. Muniba Faiza

Published

on

How to calculate number of steps (nsteps) for MD simulation run?

While doing molecular dynamics (MD) simulation, it can be difficult to calculate the number of steps or nsteps for an MD run accurately. In this article, we will learn to calculate nsteps for an MD run. (more…)

Continue Reading

MD Simulation

How to install GROMACS on Apple M1 (MacOS)?

Dr. Muniba Faiza

Published

on

Installing GROMACS on Apple M1 (MacOS)

We have provided a few articles on GROMACS installation on Ubuntu. In this article, we are going to install GROMACS [1] on Mac OS. (more…)

Continue Reading

MD Simulation

How to take snapshots of structure at specific times in GROMACS?

Published

on

How to take snapshots of structure at specific times in GROMACS?

It is important to see the behavior of protein during an MD simulation. This can be achieved by taking snapshots in the form of PDB format. In this article, we have provided a few commands that you can use to take snapshots of a complete system or protein during MD simulation. (more…)

Continue Reading

MD Simulation

GROMACS: Uses & Applications

Dr. Muniba Faiza

Published

on

GROMACS: Uses & Applications

GROMACS stands for GROningen MAchine for Chemical Simulations [1]. It is a very popular and one of the most widely used open-source bioinformatics software. It is generally used for molecular dynamics simulation of macromolecules. In this article, we will explain its uses and applications in bioinformatics studies. (more…)

Continue Reading

MD Simulation

Easy installation of GROMACS on Ubuntu 18.04 & 20.04

Dr. Muniba Faiza

Published

on

Installing GROMACS on ubuntu

We have provided several articles on GROMACS [1] installation on Ubuntu including the easy installation method for GROMACS version 5.x.x. In this article, we will provide shell scripts to install the latest (2021 series) of GROMACS on Ubuntu 18.04 and 20.04. (more…)

Continue Reading

MD Simulation

How to create an index file in GROMACS for MD simulation?

Dr. Muniba Faiza

Published

on

How to create an index file in GROMACS for MD simulation?

MD simulation is a tricky technique if you don’t understand what you are doing through various parameters and algorithms in GROMACS [1]. That may lead to several errors. In this article, we are going to create an index file for the protein groups in GROMACS to solve such errors. (more…)

Continue Reading

MD Simulation

How to generate topology of small molecules & ligands for MD Simulation?

Dr. Muniba Faiza

Published

on

generate topology of small molecules & ligands for MD simulation

Generating the topology of small molecules/ligands is an important step in molecular dynamics (MD) Simulation. We explained it in previous articles as part of MD simulation tutorials. In this article, we will explain how can you generate the topology of ligands for MD simulation of complex or small molecules only. (more…)

Continue Reading

MD Simulation

Tutorial: MD simulation with mixed solvents using GROMACS

Dr. Muniba Faiza

Published

on

MD simulation with mixed solvents

In this tutorial, we are performing MD simulation in mixed solvents of methanol and water using GROMACS [1,2]. You can follow our previous articles for MD simulation of a simple protein and a protein-ligand complex. (more…)

Continue Reading

MD Simulation

Tutorial: MD simulation output analysis of a complex using GROMACS

Dr. Muniba Faiza

Published

on

MD simulation output analysis of a complex using GROMACS

We have provided several tutorials on molecular dynamics (MD) simulation (please check further reading section). They include installation of simulation software, simulation of a simple protein, and a complex. In this article, we will analyze the GROMACS [1] output of MD simulation of a complex. (more…)

Continue Reading

MD Simulation

How to submit MD simulation job on a cluster server using PBS script?

Dr. Muniba Faiza

Published

on

MD Simulation on cluster server

Molecular dynamics (MD) simulation is one of the most widely used methods in bioinformatics. It needs high computation time and therefore, performed on workstations and servers. It requires software to upload and download files to and from the server. In this article, we have explained how to submit MD simulation jobs on cluster computers using PBS scripts. (more…)

Continue Reading

MD Simulation

Method-1: Installing GROMACS on Ubuntu with CUDA GPU Support

Dr. Muniba Faiza

Published

on

Install gromacs with gpu acceleration

GROMACS [1] is one of the most popular software in bioinformatics for molecular dynamic (MD) studies of macromolecules. We have provided different tutorials regarding MD simulation using GROMACS including its installation on Ubuntu. In this article, we will install GROMACS with GPU acceleration. (more…)

Continue Reading

MD Simulation

Installing GROMOS96 on Ubuntu

Dr. Muniba Faiza

Published

on

Installing gromos96 on Ubuntu

GROMOS96 is a well-known software package used for biomolecular simulations [1]. It can be used for the molecular dynamics simulation of protein, peptide, and protein-ligand complex as well. In this article, we will install GROMOS96 on Ubuntu. (more…)

Continue Reading

MD Simulation

MD Simulation using GROMACS: Things to remember

Dr. Muniba Faiza

Published

on

MD Simulation

Molecular dynamics (MD) simulation is considered amongst the important methods in bioinformatics. Installation of MD simulation software and execution of their commands is critical. It requires several parameters to be considered before performing simulations. A single mistake may result in impractical outputs. In this article, we will discuss such important things to remember during the MD simulation and installation and execution of its software (GROMACS) [1,2]. (more…)

Continue Reading