beagle command not found

In this troubleshooting guide we learn how to fix beagle command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

beagle: command not found

or when using sudo you get the following error message

sudo: beagle: command not found

Solutions to beagle: command not found

How To Fix beagle: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu beagle is provided by beagle package.

beagle is:

Beagle performs genotype calling, genotype phasing, imputation of ungenotyped markers, and identity-by-descent segment detection. Genotypic imputation works on phased haplotypes using a Li and Stephens haplotype frequency model. Beagle also implements the Refined IBD algorithm for detecting homozygosity-by-descent (HBD) and identity-by-descent (IBD) segments.

To fix this problem, we can install more using the command below.

sudo apt-get -y install beagle

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install beagle.

sudo apt -y install beagle

Or if you have aptitude installed you can use the following command.

sudo aptitude install beagle

Summary

In this tutorial we learn how to fix beagle command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.