ipig command not found

In this troubleshooting guide we learn how to fix ipig command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ipig: command not found

or when using sudo you get the following error message

sudo: ipig: command not found

Solutions to ipig: command not found

How To Fix ipig: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ipig is provided by ipig package.

ipig is:

iPiG targets the integration of peptide spectrum matches (PSMs) from mass spectrometry (MS) peptide identifications into genomic visualisations provided by genome browser such as the UCSC genome browser (http://genome.ucsc.edu/).

iPiG takes PSMs from the MS standard format mzIdentML (*.mzid) or in text format and provides results in genome track formats (BED and GFF3 files), which can be easily imported into genome browsers.

To fix this problem, we can install more using the command below.

sudo apt-get -y install ipig

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ipig.

sudo apt -y install ipig

Or if you have aptitude installed you can use the following command.

sudo aptitude install ipig

Summary

In this tutorial we learn how to fix ipig command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.