run_ataqv_example command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
run_ataqv_example: command not found
or when using sudo you get the following error message
sudo: run_ataqv_example: command not found
Solutions to run_ataqv_example: command not found
How To Fix run_ataqv_example: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu run_ataqv_example is provided by ataqv package.
ataqv is:
A toolkit for measuring and comparing ATAC-seq results, made in the Parker lab at the University of Michigan. They wrote it to help understand how well their ATAC-seq assays had worked, and to make it easier to spot differences that might be caused by library prep or sequencing.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ataqv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ataqv.
sudo apt -y install ataqv
Or if you have aptitude installed you can use the following command.
sudo aptitude install ataqv
Summary
In this tutorial we learn how to fix run_ataqv_example command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.