GWAMA command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
GWAMA: command not found
or when using sudo you get the following error message
sudo: GWAMA: command not found
Solutions to GWAMA: command not found
How To Fix GWAMA: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu GWAMA is provided by gwama package.
gwama is:
GWAMA (Genome-Wide Association Meta Analysis) software performs meta-analysis of the results of GWA studies of binary or quantitative phenotypes. Fixed- and random-effect meta-analyses are performed for both directly genotyped and imputed SNPs using estimates of the allelic odds ratio and 95% confidence interval for binary traits, and estimates of the allelic effect size and standard error for quantitative phenotypes. GWAMA can be used for analysing the results of all different genetic models (multiplicative, additive, dominant, recessive). The software incorporates error trapping facilities to identify strand alignment errors and allele flipping, and performs tests of heterogeneity of effects between studies.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gwama
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gwama.
sudo apt -y install gwama
Or if you have aptitude installed you can use the following command.
sudo aptitude install gwama
Summary
In this tutorial we learn how to fix GWAMA command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.