How To Install toppic-common on Kali Linux

In this tutorial we learn how to install toppic-common on Kali Linux. toppic-common is Top-down proteoform identification and characterization (common data)

Introduction

In this tutorial we learn how to install toppic-common on Kali Linux.

What is toppic-common

toppic-common is:

The TopPIC Suite consists of four software tools for the interpretation of top-down mass spectrometry data: TopFD, TopPIC, TopMG, and TopDiff.

-TopFD (Top-down mass spectral Feature Detection) is a software tool for top-down spectral deconvolution and a successor to MS-Deconv. It groups top-down spectral peaks into isotopomer envelopes and converts isotopomer envelopes to monoisotopic neutral masses. In addition, it extracts proteoform features from LC-MS or CE-MS data.

-TopPIC (Top-down mass spectrometry based Proteoform Identification and Characterization) identifies and characterizes proteoforms at the proteome level by searching top-down tandem mass spectra against a protein sequence database. TopPIC is a successor to MS-Align+. It efficiently identifies proteoforms with unexpected alterations, such as mutations and post-translational modifications (PTMs), accurately estimates the statistical significance of identifications, and characterizes reported proteoforms with unknown mass shifts. It uses several techniques, such as indexes, spectral alignment, generation function methods, and the modification identification score (MIScore), to increase the speed, sensitivity, and accuracy.

-TopMG (Top-down mass spectrometry based proteoform identification using Mass Graphs) is a software tool for identifying ultra-modified proteoforms by searching top-down tandem mass spectra against a protein sequence database. It is capable of identifying proteoforms with multiple variable PTMs and unexpected alterations, such as histone proteoforms and phosphorylated ones. It uses mass graphs, which efficiently represent candidate proteoforms with multiple variable PTMs, to increase the speed and sensitivity in proteoform identification. In addition, approximate spectrum-based filtering methods are employed for protein sequence filtering, and a Markov chain Monte Carlo method (TopMCMC) is used for estimating the statistical significance of identifications.

-TopDiff (Top-down mass spectrometry-based identification of Differentially expressed proteoforms) compares the abundances of proteoforms and finds differentially expressed proteoforms by using identifications of top-down mass spectrometry data of several protein samples.

This package ships common data used by the various program in the toppic package.

There are three methods to install toppic-common 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 toppic-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 toppic-common using apt-get by running the following command:

sudo apt-get -y install toppic-common

Install toppic-common Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install toppic-common

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

sudo aptitude -y install toppic-common

How To Uninstall toppic-common on Kali Linux

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

sudo apt-get remove toppic-common

Uninstall toppic-common And Its Dependencies

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

sudo apt-get -y autoremove toppic-common

Remove toppic-common Configurations and Data

To remove toppic-common configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge toppic-common

Remove toppic-common configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge toppic-common

Dependencies

toppic-common have the following dependencies:

References

Summary

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