nanook command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nanook: command not found
or when using sudo you get the following error message
sudo: nanook: command not found
Solutions to nanook: command not found
How To Fix nanook: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nanook is provided by nanook package.
nanook is:
NanoOK is a flexible, multi-reference software for pre- and post- alignment analysis of nanopore sequencing data, quality and error profiles.
NanoOK (pronounced na-nook) is a tool for extraction, alignment and analysis of Nanopore reads. NanoOK will extract reads as FASTA or FASTQ files, align them (with a choice of alignment tools), then generate a comprehensive multi-page PDF report containing yield, accuracy and quality analysis. Along the way, it generates plain text files which can be used for further analysis, as well as graphs suitable for inclusion in presentations and papers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install nanook
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install nanook.
sudo apt -y install nanook
Or if you have aptitude installed you can use the following command.
sudo aptitude install nanook
Summary
In this tutorial we learn how to fix nanook command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.