How To Install trnascan-se-common on Ubuntu 18.04

In this tutorial we learn how to install trnascan-se-common on Ubuntu 18.04. trnascan-se-common is detection of transfer RNA genes in genomic sequence (common files)

Introduction

In this tutorial we learn how to install trnascan-se-common on Ubuntu 18.04.

What is trnascan-se-common

trnascan-se-common is:

tRNAscan-SE identifies 99-100% of transfer RNA genes in DNA sequence while giving less than one false positive per 15 gigabases. Two previously described tRNA detection programs are used as fast, first-pass prefilters to identify candidate tRNAs, which are then analyzed by a highly selective tRNA covariance model. This work represents a practical application of RNA covariance models, which are general, probabilistic secondary structure profiles based on stochastic context-free grammars. tRNAscan-SE searches at ~ 30 000 bp/s. Additional extensions to tRNAscan-SE detect unusual tRNA homologues such as selenocysteine tRNAs, tRNA-derived repetitive elements and tRNA pseudogenes.

This package contains the architecture-independent common files.

There are three methods to install trnascan-se-common on Ubuntu 18.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 trnascan-se-common Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install trnascan-se-common

Install trnascan-se-common Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install trnascan-se-common using apt by running the following command:

sudo apt -y install trnascan-se-common

Install trnascan-se-common 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 trnascan-se-common using aptitude by running the following command:

sudo aptitude -y install trnascan-se-common

How To Uninstall trnascan-se-common on Ubuntu 18.04

To uninstall only the trnascan-se-common package we can use the following command:

sudo apt-get remove trnascan-se-common

Uninstall trnascan-se-common And Its Dependencies

To uninstall trnascan-se-common and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove trnascan-se-common

Remove trnascan-se-common Configurations and Data

To remove trnascan-se-common configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge trnascan-se-common

Remove trnascan-se-common configuration, data, and all of its dependencies

We can use the following command to remove trnascan-se-common configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge trnascan-se-common

References

Summary

In this tutorial we learn how to install trnascan-se-common package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.