LAsort command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
LAsort: command not found
or when using sudo you get the following error message
sudo: LAsort: command not found
Solutions to LAsort: command not found
How To Fix LAsort: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu LAsort is provided by daligner package.
daligner is:
These tools permit one to find all significant local alignments between reads encoded in a Dazzler database. The assumption is that the reads are from a Pacific Biosciences RS II long read sequencer. That is, the reads are long and noisy, up to 15% on average.
To fix this problem, we can install more using the command below.
sudo apt-get -y install daligner
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install daligner.
sudo apt -y install daligner
Or if you have aptitude installed you can use the following command.
sudo aptitude install daligner
Summary
In this tutorial we learn how to fix LAsort command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.