uncalled command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
uncalled: command not found
or when using sudo you get the following error message
sudo: uncalled: command not found
Solutions to uncalled: command not found
How To Fix uncalled: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu uncalled is provided by uncalled package.
uncalled is:
Streaming algorithm for mapping raw nanopore signal to DNA references
Enables real-time enrichment or depletion on Oxford Nanopore Technologies (ONT) MinION runs via ReadUntil.
Also supports standalone signal mapping of fast5 reads
To fix this problem, we can install more using the command below.
sudo apt-get -y install uncalled
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install uncalled.
sudo apt -y install uncalled
Or if you have aptitude installed you can use the following command.
sudo aptitude install uncalled
Summary
In this tutorial we learn how to fix uncalled command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.