lamarc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lamarc: command not found
or when using sudo you get the following error message
sudo: lamarc: command not found
Solutions to lamarc: command not found
How To Fix lamarc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lamarc is provided by lamarc package.
lamarc is:
LAMARC is a program which estimates population-genetic parameters such as population size, population growth rate, recombination rate, and migration rates. It approximates a summation over all possible genealogies that could explain the observed sample, which may be sequence, SNP, microsatellite, or electrophoretic data. LAMARC and its sister program Migrate are successor programs to the older programs Coalesce, Fluctuate, and Recombine, which are no longer being supported. The programs are memory-intensive but can run effectively on workstations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lamarc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lamarc.
sudo apt -y install lamarc
Or if you have aptitude installed you can use the following command.
sudo aptitude install lamarc
Summary
In this tutorial we learn how to fix lamarc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.