How To Install spaln on Kali Linux

In this tutorial we learn how to install spaln on Kali Linux. spaln is splicing-aware transcript-alignment to genomic DNA

Introduction

In this tutorial we learn how to install spaln on Kali Linux.

What is spaln

spaln is:

Spaln (space-efficient spliced alignment) is a stand-alone program that maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence in a single job. It also performs spliced or ordinary alignment after rapid similarity search against a protein sequence database, if a genomic segment or an amino acid sequence is given as a query.

spaln supports a combination of protein sequence database and a given genomic segment and performs rapid similarity searches and (semi-)global alignments of a set of protein sequence queries against a protein sequence database. Spaln adopts multi-phase heuristics that makes it possible to perform the job on a conventional personal computer.

There are three methods to install spaln on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install spaln Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install spaln using apt-get by running the following command:

sudo apt-get -y install spaln

Install spaln Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install spaln using apt by running the following command:

sudo apt -y install spaln

Install spaln Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install spaln using aptitude by running the following command:

sudo aptitude -y install spaln

How To Uninstall spaln on Kali Linux

To uninstall only the spaln package we can use the following command:

sudo apt-get remove spaln

Uninstall spaln And Its Dependencies

To uninstall spaln and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove spaln

Remove spaln Configurations and Data

To remove spaln configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge spaln

Remove spaln configuration, data, and all of its dependencies

We can use the following command to remove spaln configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge spaln

Dependencies

spaln have the following dependencies:

References

Summary

In this tutorial we learn how to install spaln package on Kali Linux using different package management tools: apt, apt-get and aptitude.