profbval command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
profbval: command not found
or when using sudo you get the following error message
sudo: profbval: command not found
Solutions to profbval: command not found
How To Fix profbval: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu profbval is provided by profbval package.
profbval is:
PROFbval can be useful for both protein structure and function predictions. For instance, a biologist can locate potentially antigenic determinants by identifying the most flexible residues on the protein surface. Additionally, a crystallographer can locate residues that potentially have high experimental B-values.
PROFbval takes the following input, further described on profbval(1):
- a protein sequence in a FASTA file
- secondary structure and solvent accessibility prediction by prof(1)
- an HSSP file
Background: the mobility of a given residue on the protein surface is related to its functional role. Therefore, identification of extremely rigid or flexible residues on the protein surface is helpful for identifying functionally important residues in proteins. A common measure of atom mobility in proteins is B-value data from x-ray crystallography structures. PROFbval is the first tool to predict normalized backbone B-values from amino-acid sequence.
To fix this problem, we can install more using the command below.
sudo apt-get -y install profbval
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install profbval.
sudo apt -y install profbval
Or if you have aptitude installed you can use the following command.
sudo aptitude install profbval
Summary
In this tutorial we learn how to fix profbval command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.