dba command not found

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

Introduction

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

dba: command not found

or when using sudo you get the following error message

sudo: dba: command not found

Solutions to dba: command not found

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

In Ubuntu dba is provided by wise package.

wise is:

Wise2 is a package focused on comparisons of biopolymers, commonly DNA and protein sequences. There are many other packages which do this, probably the best known being BLAST package (from NCBI) and the Fasta package (from Bill Pearson). There are other packages, such as the HMMER package (Sean Eddy) or SAM package (UC Santa Cruz) focused on hidden Markov models (HMMs) of biopolymers.

Wise2’s particular forte is the comparison of DNA sequence at the level of its protein translation. This comparison allows the simultaneous prediction of say gene structure with homology based alignment.

Wise2 also contains other algorithms, such as the venerable Smith-Waterman algorithm, or more modern ones such as Stephen Altschul’s generalised gap penalties, or even experimental ones developed in house, such as dba. The development of these algorithms is due to the ease of developing such algorithms in the environment used by Wise2.

Wise2 has also been written with an eye for reuse and maintainability. Although it is a pure C package you can access its functionality directly in Perl. Parts of the package (or the entire package) can be used by other C or C++ programs without namespace clashes as all externally linked variables have the unique identifier Wise2 prepended.

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

sudo apt-get -y install wise

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

You can also use apt command to install wise.

sudo apt -y install wise

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

sudo aptitude install wise

Summary

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