alleleCounter command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
alleleCounter: command not found
or when using sudo you get the following error message
sudo: alleleCounter: command not found
Solutions to alleleCounter: command not found
How To Fix alleleCounter: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu alleleCounter is provided by allelecount package.
allelecount is:
Support code for NGS copy number algorithms. Takes a file of locations and a [cr|b]am file and generates a count of coverage of each allele [ACGT] at that location (given any filter settings).
The alleleCount package primarily exists to prevent code duplication between some other projects, specifically AscatNGS and Battenberg.
To fix this problem, we can install more using the command below.
sudo apt-get -y install allelecount
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install allelecount.
sudo apt -y install allelecount
Or if you have aptitude installed you can use the following command.
sudo aptitude install allelecount
Summary
In this tutorial we learn how to fix alleleCounter command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.