aggregateContigOverlapsByBin.pl command not found

In this troubleshooting guide we learn how to fix aggregateContigOverlapsByBin.pl command not found error message

Introduction

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

aggregateContigOverlapsByBin.pl: command not found

or when using sudo you get the following error message

sudo: aggregateContigOverlapsByBin.pl: command not found

Solutions to aggregateContigOverlapsByBin.pl: command not found

How To Fix aggregateContigOverlapsByBin.pl: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu aggregateContigOverlapsByBin.pl is provided by metabat package.

metabat is:

MetaBAT integrates empirical probabilistic distances of genome abundance and tetranucleotide frequency for accurate metagenome binning. MetaBAT outperforms alternative methods in accuracy and computational efficiency on both synthetic and real metagenome datasets. It automatically forms hundreds of high quality genome bins on a very large assembly consisting millions of contigs in a matter of hours on a single node.

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

sudo apt-get -y install metabat

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

You can also use apt command to install metabat.

sudo apt -y install metabat

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

sudo aptitude install metabat

Summary

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