lam_conv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lam_conv: command not found
or when using sudo you get the following error message
sudo: lam_conv: command not found
Solutions to lam_conv: command not found
How To Fix lam_conv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lam_conv 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 lam_conv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.