fastQTL command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fastQTL: command not found
or when using sudo you get the following error message
sudo: fastQTL: command not found
Solutions to fastQTL: command not found
How To Fix fastQTL: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fastQTL is provided by fastqtl package.
fastqtl is:
The goal of FastQTL is to identify single-nucleotide polymorphisms (SNPs) which are significantly associated with various molecular phenotypes (i.e. expression of known genes, cytosine methylation levels, etc). It performs scans for all possible phenotype-variant pairs in cis (i.e. variants located within a specific window around a phenotype). FastQTL implements a new permutation scheme (Beta approximation) to accurately and rapidly correct for multiple-testing at both the genotype and phenotype levels.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fastqtl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fastqtl.
sudo apt -y install fastqtl
Or if you have aptitude installed you can use the following command.
sudo aptitude install fastqtl
Summary
In this tutorial we learn how to fix fastQTL command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.