vcf-fix-newlines command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
vcf-fix-newlines: command not found
or when using sudo you get the following error message
sudo: vcf-fix-newlines: command not found
Solutions to vcf-fix-newlines: command not found
How To Fix vcf-fix-newlines: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu vcf-fix-newlines is provided by vcftools package.
vcftools is:
VCFtools is a program package designed for working with VCF files, such as those generated by the 1000 Genomes Project. The aim of VCFtools is to provide methods for working with VCF files: validating, merging, comparing and calculate some basic population genetic statistics.
To fix this problem, we can install more using the command below.
sudo apt-get -y install vcftools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install vcftools.
sudo apt -y install vcftools
Or if you have aptitude installed you can use the following command.
sudo aptitude install vcftools
Summary
In this tutorial we learn how to fix vcf-fix-newlines command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.