dialign-tx command not found

In this troubleshooting guide we learn how to fix dialign-tx command not found error message

Introduction

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

dialign-tx: command not found

or when using sudo you get the following error message

sudo: dialign-tx: command not found

Solutions to dialign-tx: command not found

How To Fix dialign-tx: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dialign-tx is provided by dialign-tx package.

dialign-tx is:

DIALIGN-TX is a command line tool to perform multiple alignment of protein or DNA sequences. It is a complete reimplementation of the segment-base approach including several new improvements and heuristics that significantly enhance the quality of the output alignments compared to DIALIGN 2.2 and DIALIGN-T. For pairwise alignment, DIALIGN-TX uses a fragment-chaining algorithm that favours chains of low-scoring local alignments over isolated high-scoring fragments. For multiple alignment, DIALIGN-TX uses an improved greedy procedure that is less sensitive to spurious local sequence similarities.

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

sudo apt-get -y install dialign-tx

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

You can also use apt command to install dialign-tx.

sudo apt -y install dialign-tx

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

sudo aptitude install dialign-tx

Summary

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