velvetg command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
velvetg: command not found
or when using sudo you get the following error message
sudo: velvetg: command not found
Solutions to velvetg: command not found
How To Fix velvetg: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu velvetg is provided by velvet package.
velvet is:
Velvet is a de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454, developed by Daniel Zerbino and Ewan Birney at the European Bioinformatics Institute (EMBL-EBI), near Cambridge, in the United Kingdom.
Velvet currently takes in short read sequences, removes errors then produces high quality unique contigs. It then uses paired read information, if available, to retrieve the repeated areas between contigs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install velvet
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install velvet.
sudo apt -y install velvet
Or if you have aptitude installed you can use the following command.
sudo aptitude install velvet
Summary
In this tutorial we learn how to fix velvetg command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.