Bandage command not found

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

Introduction

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

Bandage: command not found

or when using sudo you get the following error message

sudo: Bandage: command not found

Solutions to Bandage: command not found

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

In Ubuntu Bandage is provided by bandage package.

bandage is:

Bandage is a GUI program that allows users to interact with the assembly graphs made by de novo assemblers such as Velvet, SPAdes, MEGAHIT and others.

De novo assembly graphs contain not only assembled contigs but also the connections between those contigs, which were previously not easily accessible. Bandage visualises assembly graphs, with connections, using graph layout algorithms. Nodes in the drawn graph, which represent contigs, can be automatically labelled with their ID, length or depth. Users can interact with the graph by moving, labelling and colouring nodes. Sequence information can also be extracted directly from the graph viewer. By displaying connections between contigs, Bandage opens up new possibilities for analysing and improving de novo assemblies that are not possible by looking at contigs alone.

More information and download links are on the Bandage website: rrwick.github.io/Bandage

The package is relevant to the field of genome assembly.

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

sudo apt-get -y install bandage

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

You can also use apt command to install bandage.

sudo apt -y install bandage

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

sudo aptitude install bandage

Summary

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