Sequence Analysis
Installing HMMER package on Ubuntu

HMMER tool is used for searching sequence homologs using profile hidden Markov Models (HMMs) [1]. It is also one of the most widely used alignment tools. In this article, we will install the latest HMMER package on Ubuntu.
Preparing system
Let’s update and upgrade the system first.
Open the terminal (Ctrl+T) and type the following commands:
$ sudo apt-get update
$ sudo apt-get upgrade
Downloading HMMER
We are downloading the latest stable version of HMMER (v3.3.1). You can select other versions here. Move inside the directory where you want to download the software. Open a terminal and copy-paste the following commands.
$ cd Downloads/
$ wget http://eddylab.org/software/hmmer/hmmer-3.3.1.tar.gz
Installing HMMER
Untar the file and install.
$ tar xvzf hmmer-3.3.1.tar.gz
You will see a new directory in your ‘Downloads‘ namely, ‘hmmer-3.3.1‘. Move inside this new directory.
$ cd hmmer-3.3.1/
Now, install using the following commands.
$ ./configure
$ make
$ make check
$ sudo make install
After its completion, move inside another directory, namely, ‘easel’, and install that as well.
$ cd easel/
$ sudo make install
It will take a few minutes to finish depending on your system’s configuration. After that, the HMMER package is completely installed on your system.
Sequence Analysis
HMMER- Uses & Applications

HMMER [1] is a well-known bioinformatics tool/software. It offers a web server and a command-line tool for users. Here are some additional applications of HMMER. (more…)
Sequence Analysis
Easy installation of some alignment software on Ubuntu (Linux) 18.04 & 20.04

There are commonly used alignment programs such as muscle, blast, clustalx, and so on, that can be easily installed from the repository. In this article, we are going to install such software on Ubuntu 18.04 & 20.04. (more…)
Sequence Analysis
FEGS- A New Feature Extraction Model for Protein Sequence Analysis

Protein sequence analyses include protein similarity, Protein function prediction, protein interactions, and so on. A new feature extraction model is developed for easy analysis of protein sequences. (more…)
You must be logged in to post a comment Login