Introduction
In this tutorial we learn how to install alien-hunter
on Ubuntu 20.04.
What is alien-hunter
alien-hunter is:
Alien_hunter is an application for the prediction of putative
Horizontal Gene Transfer (HGT) events with the implementation of
Interpolated Variable Order Motifs (IVOMs). An IVOM approach
exploits compositional biases using variable order motif distributions
and captures more reliably the local composition of a sequence compared
to fixed-order methods. Optionally the predictions can be parsed into a
2-state 2nd order Hidden Markov Model (HMM), in a change-point detection
framework, to optimize the localization of the boundaries of the
predicted regions. The predictions (embl format) can be automatically
loaded into Artemis genome viewer freely available at:
http://www.sanger.ac.uk/Software/Artemis/.
Please enable JavaScript
Install Ubuntu 23.04 Lunar Lobster server arm64 virtual machine on macOS Apple Silicon (M1, M2, Pro)
There are three methods to install alien-hunter
on Ubuntu 20.04. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install alien-hunter Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install alien-hunter
using apt-get
by running the following command:
sudo apt-get -y install alien-hunter
Install alien-hunter Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install alien-hunter
using apt
by running the following command:
sudo apt -y install alien-hunter
Install alien-hunter Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install alien-hunter
using aptitude
by running the following command:
sudo aptitude -y install alien-hunter
How To Uninstall alien-hunter on Ubuntu 20.04
To uninstall only the alien-hunter
package we can use the following command:
sudo apt-get remove alien-hunter
Uninstall alien-hunter And Its Dependencies
To uninstall alien-hunter
and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove alien-hunter
Remove alien-hunter Configurations and Data
To remove alien-hunter
configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge alien-hunter
Remove alien-hunter configuration, data, and all of its dependencies
We can use the following command to remove alien-hunter
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge alien-hunter
References
Summary
In this tutorial we learn how to install alien-hunter
package on Ubuntu 20.04 using different package management tools: apt
, apt-get
and aptitude
.