plot-roh.py command not found

In this troubleshooting guide we learn how to fix plot-roh.py command not found error message

Introduction

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

plot-roh.py: command not found

or when using sudo you get the following error message

sudo: plot-roh.py: command not found

Solutions to plot-roh.py: command not found

How To Fix plot-roh.py: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu plot-roh.py is provided by bcftools package.

bcftools is:

BCFtools is a set of utilities that manipulate variant calls in the Variant Call Format (VCF) and its binary counterpart BCF. All commands work transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed.

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

sudo apt-get -y install bcftools

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

You can also use apt command to install bcftools.

sudo apt -y install bcftools

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

sudo aptitude install bcftools

Summary

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