proda command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
proda: command not found
or when using sudo you get the following error message
sudo: proda: command not found
Solutions to proda: command not found
How To Fix proda: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu proda is provided by proda package.
proda is:
ProDA is a system for automated detection and alignment of homologous regions in collections of proteins with arbitrary domain architectures. Given an input set of unaligned sequences, ProDA identifies all homologous regions appearing in one or more sequences, and returns a collection of local multiple alignments for these regions.
To fix this problem, we can install more using the command below.
sudo apt-get -y install proda
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install proda.
sudo apt -y install proda
Or if you have aptitude installed you can use the following command.
sudo aptitude install proda
Summary
In this tutorial we learn how to fix proda command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.