Skip to content

jahernayeem/openmm-tutorial-msbs

 
 

Repository files navigation

Introductory OpenMM tutorial

Conditions of use

License: CC BY-NC 4.0 All files in this repository are licensed under a Creative Commons Attribution-NonCommercial 4.0 International License. Contributions are welcome, see CONTRIBUTING.md for more details.

This tutorial shows how to use and install different software packages, which have their own conditions of use.

Scope

This tutorial was written for the course Molecular Simulations of Biological Systems (MSBS), a (very) introductory course for students of the MSc program Biochemistry and Biotechnology at Ghent University. The main goal of the course is to enable these students (who have a limited background in statistical mechanics) to run sensible molecular dynamics simulations and to interpret the results correctly. This tutorial assumes the students have a basic knowledge of Python.

All materials are strongly inspired by several online resources (tutorials, documentation and examples) of the OpenMM, Python, NumPy, Matplotlib and other projects. The main references are:

Even though these resources contain all the background and details to learn OpenMM and related tools, the amount of information is simply overwhelming. The aim of this course is to provide a gentle introduction to many of the topics in the above references.

Installation of OpenMM

Practically all simulations in this tutorial are carried out with OpenMM, which is described extensively here. In short, OpenMM is a modern open-source biomolecular simulation toolkit: it supports many popular biomolecular force fields (AMBER, CHARMM, AMOEBA), it supports GPU-accelerated calculations and it can carry out many types of advanced molecular dynamics simulations.

To access and customize all these features, and to write reproducible simulation protocols, OpenMM simulations are implemented by writing Python scripts. Hence, to install OpenMM, you need (to create) a Python environment and install OpenMM as a Python package. (The C++ interface is not covered in this tutorial.)

For this tutorial, three environments can be used to perform simulations, each having their strengths and weaknesses. It is recommended to follow this tutorial by running Jupyter notebooks on your own laptop, as explained below. If you have access to the Flemish Supercomputer Center (VSC) (i.e. you are affiliated to a Flemish research institution), you may also run the simulations via an interactive session on the cluster as explained below. Note, however, that this feature is still in a trial-phase. In section 3 of the tutorial, it is discussed how to transfer a notebook from your laptop to an HPC environment (and back) for non-interactive job submissions.

Your laptop

Strengths:

  • Calculations require no network.
  • Output files are stored locally.
  • Easy visualization in the notebook with nglview.
  • You can work interactively.

Weaknesses:

  • The installation requires some work.
  • Your laptop could overheat when running longer simulations.
  • Your laptop must remain powered on during calculations.

Installation instructions: setup_on_your_laptop.md

Interactive session on High-performance cluster (HPC)

Strengths:

  • Output files are stored on the cluster.
  • Easy visualization in the notebook with nglview.
  • You can work interactively.
  • You have access to more computational power.

Weaknesses:

  • The installation requires some work.
  • There is a predefined duration of your interactive session.
  • The session ends without warning, which may lose you some progress.
  • You must remain connected during the sessions.
  • This feature is relatively new and may have some flaws.

Installation instructions: setup_interactive_session_on_VSC.md

Non-interactive job submission on High-performance cluster (HPC)

Strengths:

  • Calculations run in the background on a remote machine. You can power off your laptop while they run.
  • You have access to more computational power.

Weaknesses:

  • Some Linux knowledge is required.
  • Your calculations do not start instantly. Instead, you submit "jobs" which are executed when a compute node becomes available.

Installation instructions: setup_on_a_hpc.md

Starting the tutorial

This section assumes you have just installed OpenMM on your laptop or on the HPC (for interactive sessions), following the instructions of the previous section.

Your Laptop

To start any notebook from the tutorial, download the ZIP file with the most recent notebooks and unzip this archive.

  • On Windows open a Conda prompt and change the directory to where you unzipped the archive. If needed, first change to the correct drive, e.g. by typing the command D:, then use e.g. cd folowed by the name of the directory where the ZIP file was unpacked.

  • On MacOS or Linux, open any terminal emulator and change the directory to where you unzipped the archive. There is no need to change drives and the usage of cd is similar to Windows.

Then enter the following commands:

conda activate openmm
jupyter lab

A browser window should pop up in which you can select and open a notebook. If you are not familiar with notebooks, the following resources can be helpful: Jupyter Lab Overview.

Interactive Session on HPC (work in progress)

To start any notebook from the tutorial, download the ZIP file with the most recent notebooks, upload it to the user folder of the HPC cluster (instructions to be added) and unzip this archive.

  1. Instructions to be added to upload the zip files.

  2. Navigate to https://login.hpc.ugent.be and follow the needed steps to log in.

  3. When you are logged in, click on the tab 'Interactive Apps' and select 'Jupyter Notebook'.

  4. Select a cluster and resources that you want to use. The more resources you require (hours, number of nodes and number of cores), the longer you will have to wait to get access to you session as there is a queue system in place (more information here: https://docs.vscentrum.be/en/latest/jobs/the_job_system_what_and_why.html). Normally, the use of following settings should ensure a near-immediate start of your session with workable resources for the notebooks in this tutorial:

    • cluster = swalot
    • Time = 4 (hours) (be aware that the session will finish after the requested time without warning and you may lose progress)
    • nodes = 1
    • cores = 2

    The remaining settings do not need changing.

  5. Click start session and a new screen will appear showing you whether you are in the queue or whether the session is about to start ('Your session is currently starting... Please be patient as this process can take a few minutes.').

  6. After some time a button will appear saying 'Connect to Jupyter', click it. A jupyter environment should open in a new tab.

  7. A browser window should pop up in which you can select and open a notebook. If you are not familiar with notebooks, the following resources can be helpful: Jupyter Lab Overview.

  8. After opening the notebook, click 'Kernel' in the menu tabs and select 'Change Kernel'. Choose the environment that was created previously (if you followed the tutorial, this will be: 'Python 3 openmm'). This is needed to use the packages that were installed in the conda environment that was created.

Overview of Tutorial Sections

The getting-started instructions showed you how to open a new notebook or to start any notebook from this tutorial. The tutorial consists of the following sections, to be followed more-or-less in order:

1. First steps:

2. Different ways of simulating analine dipeptide:

3. Running OpenMM notebooks in other places: (You can skip these for the MSBS course.)

4. A short protein MD simulation:

5. Analysis of MD trajectories:

6. Visalization

7. Ligands (This part is still under development and optional. It does not work natively under Windows, but it should work with the Windows Subsystem for Linux 2.)

Trouble shooting

A list of common problems is compiled here: FAQ.md

About

OpenMM tutorial for the MSBS course

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Jupyter Notebook 97.0%
  • Python 2.6%
  • Shell 0.4%