LAsplit command not found

In this troubleshooting guide we learn how to fix LAsplit command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

LAsplit: command not found

or when using sudo you get the following error message

sudo: LAsplit: command not found

Solutions to LAsplit: command not found

How To Fix LAsplit: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu LAsplit 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 LAsplit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.