atac command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
atac: command not found
or when using sudo you get the following error message
sudo: atac: command not found
Solutions to atac: command not found
How To Fix atac: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu atac is provided by atac package.
atac is:
atac computes a one-to-one pairwise alignment of large DNA sequences. It first finds the unique k-mers in each sequence, chains them to larger blocks, and fills in spaces between blocks. It was written primarily to transfer annotations between different assemblies of the human genome.
The output is a set of ungapped ‘matches’, and a set of gapped ‘runs’ formed from the matches. Each match or run associates one sequence with the other sequence. The association is ‘unique’, in that there is no other (sizeable) associations for either sequence. Thus, large repeats and duplications are not present in the output - they appear as unmapped regions.
Though the output is always pairwise, atac can cache intermediate results to speed a comparisons of multiple sequences.
This package is part of the Kmer suite.
To fix this problem, we can install more using the command below.
sudo apt-get -y install atac
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install atac.
sudo apt -y install atac
Or if you have aptitude installed you can use the following command.
sudo aptitude install atac
Summary
In this tutorial we learn how to fix atac command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.