clustalx command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
clustalx: command not found
or when using sudo you get the following error message
sudo: clustalx: command not found
Solutions to clustalx: command not found
How To Fix clustalx: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu clustalx is provided by clustalx package.
clustalx is:
This package offers a GUI interface for the Clustal multiple sequence alignment program. It provides an integrated environment for performing multiple sequence- and profile-alignments to analyse the results. The sequence alignment is displayed in a window on the screen. A versatile coloring scheme has been incorporated to highlight conserved features in the alignment. For professional presentations, one should use the texshade LaTeX package or boxshade.
The pull-down menus at the top of the window allow you to select all the options required for traditional multiple sequence and profile alignment. You can cut-and-paste sequences to change the order of the alignment; you can select a subset of sequences to be aligned; you can select a sub-range of the alignment to be realigned and inserted back into the original alignment.
An alignment quality analysis can be performed and low-scoring segments or exceptional residues can be highlighted.
To fix this problem, we can install more using the command below.
sudo apt-get -y install clustalx
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install clustalx.
sudo apt -y install clustalx
Or if you have aptitude installed you can use the following command.
sudo aptitude install clustalx
Summary
In this tutorial we learn how to fix clustalx command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.