How To Install trace2dbest on Kali Linux
Introduction
In this tutorial we learn how to install trace2dbest on Kali Linux.
What is trace2dbest
trace2dbest is:
ESTs are short sequences derived from reverse-transcribed RNA. Their abundances yield insights in the expression of genes across tissues, support the discovery of new genes and allow one to assess the coverage of whole genome sequencing projects. Public databases like dbEST at the NCBI collect this data.
trace2dbEST process raw sequenceing chromatograph trace files from EST projects into quality-checked sequences, ready for submission to dbEST. trace2dbEST guides you through the creation of all the necessary files for submission of ESTs to dbEST. trace2dbest makes use of other software (available free under academic licence) that you will need to have installed, namely phred, cross_match and (optionally) BLAST.
There are three methods to install trace2dbest 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 trace2dbest Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install trace2dbest using apt-get by running the following command:
sudo apt-get -y install trace2dbestInstall trace2dbest Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install trace2dbest using apt by running the following command:
sudo apt -y install trace2dbestInstall trace2dbest 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 updateAfter updating apt database, We can install trace2dbest using aptitude by running the following command:
sudo aptitude -y install trace2dbestHow To Uninstall trace2dbest on Kali Linux
To uninstall only the trace2dbest package we can use the following command:
sudo apt-get remove trace2dbestUninstall trace2dbest And Its Dependencies
To uninstall trace2dbest and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove trace2dbestRemove trace2dbest Configurations and Data
To remove trace2dbest configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge trace2dbestRemove trace2dbest configuration, data, and all of its dependencies
We can use the following command to remove trace2dbest configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge trace2dbestDependencies
trace2dbest have the following dependencies:
References
Summary
In this tutorial we learn how to install trace2dbest package on Kali Linux using different package management tools: apt, apt-get and aptitude.