bustools command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bustools: command not found
or when using sudo you get the following error message
sudo: bustools: command not found
Solutions to bustools: command not found
How To Fix bustools: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bustools is provided by bustools package.
bustools is:
This package contains BUStools program, it can be used to error correct barcodes, collapse UMIs, produce gene count or transcript compatibility count matrices
To fix this problem, we can install more using the command below.
sudo apt-get -y install bustools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bustools.
sudo apt -y install bustools
Or if you have aptitude installed you can use the following command.
sudo aptitude install bustools
Summary
In this tutorial we learn how to fix bustools command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.