parseval command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
parseval: command not found
or when using sudo you get the following error message
sudo: parseval: command not found
Solutions to parseval: command not found
How To Fix parseval: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu parseval is provided by aegean package.
aegean is:
The AEGeAn Toolkit is designed for the Analysis and Evaluation of Genome Annotations. The toolkit includes a variety of analysis programs, e.g. for comparing distinct sets of gene structure annotations (ParsEval), computation of gene loci (LocusPocus) and more.
To fix this problem, we can install more using the command below.
sudo apt-get -y install aegean
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install aegean.
sudo apt -y install aegean
Or if you have aptitude installed you can use the following command.
sudo aptitude install aegean
Summary
In this tutorial we learn how to fix parseval command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.