Logo

dev-resources.site

for different kinds of informations.

How to install Gromacs, PyMOL, AutoDock Vina, VMD, MGLTools, Avogadro2, Open Babel in Ubuntu 20.04

Published at
10/31/2021
Categories
linux
bash
bioinformatics
Author
abdnahid
Categories
3 categories in total
linux
open
bash
open
bioinformatics
open
Author
8 person written this
abdnahid
open
How to install Gromacs, PyMOL, AutoDock Vina, VMD, MGLTools, Avogadro2, Open Babel in Ubuntu 20.04

One of the most time-consuming and frustrating aspects of computational tasks has always been properly installing software and getting it up and running in no time. In the case of bioinformatics tools, this is notoriously difficult in some cases, particularly in Linux-based operating systems such as Ubuntu, where one-click installer files, unlike Windows, are not an option. Although much of the popular software in the bioinformatics world is easy to install in Ubuntu if one is familiar with the ecosystem, a beginner will certainly have a difficult time circling the internet trying to find a proper installation method, at least, that’s what I had to go through when I first started out.

Here in this article, I compiled out the installation methods of some of the most commonly used bioinformatics and simulation tools, as well as how to run these tools after installing them on an Ubuntu 20.04 machine. Feel free to let me know which software should be added next.

Before running any of the commands below, run this command once:

sudo apt-get -y update
Enter fullscreen mode Exit fullscreen mode

1. Avogadro2

Installation

sudo apt-get install -y avogadro
Enter fullscreen mode Exit fullscreen mode

How to run Avogadro2

avogadro2
Enter fullscreen mode Exit fullscreen mode

2. PyMOL

Installation

sudo apt-get install -y pymol
Enter fullscreen mode Exit fullscreen mode

How to run pymol

pymol
Enter fullscreen mode Exit fullscreen mode

3. Gromacs

Installation

sudo apt-get install -y gromacs
Enter fullscreen mode Exit fullscreen mode

How to run Gromacs

gmx
Enter fullscreen mode Exit fullscreen mode

4. VMD

Installation

cd ~

curl -k https://www.ks.uiuc.edu/Research/vmd/vmd-1.9.3/files/final/vmd-1.9.3.bin.LINUXAMD64-CUDA8-OptiX4-OSPRay111p1.opengl.tar.gz --output vmd.tar.gz

mkdir -p vmd

tar -xvzf vmd.tar.gz -C vmd --strip-components=1

cd vmd

./configure

cd src

sudo make install
Enter fullscreen mode Exit fullscreen mode

How to run VMD

vmd
Enter fullscreen mode Exit fullscreen mode

5. AutoDock Vina

Installation

sudo apt-get install -y autodock-vina
Enter fullscreen mode Exit fullscreen mode

How to run AutoDock Vina

vina
Enter fullscreen mode Exit fullscreen mode

6. MGLTools

Installation

cd ~

curl -k https://ccsb.scripps.edu/download/532/ --output mgltools.tar.gz

mkdir -p mgltools

tar -xvzf mgltools.tar.gz -C mgltools --strip-components=1

cd mgltools

bash install.sh

source ./initMGLtools.sh 

Enter fullscreen mode Exit fullscreen mode

How to run Python Molecule Viewer (PMV)

pmv
Enter fullscreen mode Exit fullscreen mode

How to run AutoDockTools (ADT)

adt
Enter fullscreen mode Exit fullscreen mode

How to run Vision

vision
Enter fullscreen mode Exit fullscreen mode

7. Open Babel Command Line Program

Installation

sudo apt-get install -y openbabel
Enter fullscreen mode Exit fullscreen mode

How to run openbabel

obabel
Enter fullscreen mode Exit fullscreen mode

8. Open Babel Graphical User Interface (GUI)

Installation

sudo apt-get install -y openbabel-gui
Enter fullscreen mode Exit fullscreen mode

How to run openbabel gui

obgui
Enter fullscreen mode Exit fullscreen mode
bioinformatics Article's
30 articles in total
Favicon
Performance trap: general libraries & helper objects
Favicon
Optimizing QuPath intensity measurements: 12.5 hr to 2min
Favicon
Running DeepCell on Google Batch with node pools
Favicon
Exploring the Cutting-Edge of Genome Hacking with Bioinformatics!
Favicon
Download Fasta files in Bash using Nano text editor in 4 simple steps
Favicon
Faster tetranucleotide (k-mer) frequencies!
Favicon
Bioinformatics: PackagesNotFoundError on osx-arm64 Platform
Favicon
Announcing WDL 1.1.1
Favicon
Decoding Life: Navigating the World of Bioinformatics
Favicon
What is Bioconductor in R ?
Favicon
Solution-diffusion model in Rust
Favicon
Meet DNAI: A ML-Based Analysis of DNA
Favicon
BCFtools
Favicon
Website Developer Needed!!!! 🧬💻
Favicon
Calculating tetranucleotide (k-mer) frequencies
Favicon
Get GC Content
Favicon
Tips for scalable workflows on AWS
Favicon
Why I'm hyped about Julia for Bioinformatics
Favicon
Introducing myself
Favicon
Profiling workflows with the Amazon Genomics CLI
Favicon
How to install Gromacs, PyMOL, AutoDock Vina, VMD, MGLTools, Avogadro2, Open Babel in Ubuntu 20.04
Favicon
AlphaFold e a predição de estruturas
Favicon
Boas Vindas
Favicon
Bash Commands for Bioinformatics Beginners: Part 1
Favicon
[pt-BR] Minha jornada de aprendizagem em Python
Favicon
Slideio - an open-source python library for reading of medical images
Favicon
Python for bioinformatics: Getting started with sequence analysis in Python
Favicon
Multiple Sequence alignment (MSA) [C++]
Favicon
Phred quality score
Favicon
Counting sequences in Fasta/Fastq files

Featured ones: