tvcutils command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tvcutils: command not found
or when using sudo you get the following error message
sudo: tvcutils: command not found
Solutions to tvcutils: command not found
How To Fix tvcutils: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tvcutils is provided by tvc package.
tvc is:
Torrent Variant Caller (TVC) is a genetic variant caller for Ion Torrent sequencing platforms, and is specially optimized to exploit the underlying flow signal information in the statistical model to evaluate variants. Torrent Variant Caller is designed to call single-nucleotide polymorphisms (SNPs), multi-nucleotide polymorphisms (MNPs), insertions, deletions, and block substitutions.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tvc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tvc.
sudo apt -y install tvc
Or if you have aptitude installed you can use the following command.
sudo aptitude install tvc
Summary
In this tutorial we learn how to fix tvcutils command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.