mustang command not found

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

Introduction

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

mustang: command not found

or when using sudo you get the following error message

sudo: mustang: command not found

Solutions to mustang: command not found

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

In Ubuntu mustang is provided by mustang package.

mustang is:

Mustang is an algorithm to align multiple protein structures. Given a set of PDB files, the program uses the spatial information in the Calpha atoms of the set to produce a sequence alignment. Based on a progressive pairwise heuristic the algorithm then proceeds through a number of refinement passes. Mustang reports the multiple sequence alignment and the corresponding superposition of structures.

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

sudo apt-get -y install mustang

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

You can also use apt command to install mustang.

sudo apt -y install mustang

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

sudo aptitude install mustang

Summary

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