How To Install mMass on CentOS 7

In this tutorial we learn how to install mMass on CentOS 7. mMass is Open Source Mass Spectrometry Tool

Introduction

In this tutorial we learn how to install mMass on CentOS 7.

What is mMass

While tools for the automated analysis of MS and LC-MS/ MS data are continuously improving, it is still often the case that at the end of an experiment, the mass spectrometrists will spend time carefully examining individual spectra. Current software support is mostly provided only by the instrument vendors, and the available software tools are often instrument-dependent. Such software can only be used to analyze data from a specific instrument, and this causes serious problems for laboratories that use more than one instrument. This tight software-instrument relationship also causes problems for laboratories that do not possess their own instruments, and have to obtain mass spectra from other, collaborating, laboratories. To provide a solution to these limitations I have started to develop mMass - open source multi-platform tool for precise mass spectrometric data analysis and interpretation.

We can use yum or dnf to install mMass on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install mMass.

Install mMass on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install mMass using yum by running the following command:

sudo yum -y install mMass

Install mMass on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install mMass using dnf by running the following command:

sudo dnf -y install mMass

How To Uninstall mMass on CentOS 7

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

sudo dnf remove mMass

References

Summary

In this tutorial we learn how to install mMass on CentOS 7 using yum and dnf.