TMscore command not found

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

Introduction

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

TMscore: command not found

or when using sudo you get the following error message

sudo: TMscore: command not found

Solutions to TMscore: command not found

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

In Ubuntu TMscore is provided by tm-align package.

tm-align is:

TM-align is a computer algorithm for protein structure alignment using dynamic programming. The scoring is performed by the TM-score rotation matrix. This is similar to the RMSD in that unaligned portions of the structure influence the scoring less than the more structurally conserved regions.

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

sudo apt-get -y install tm-align

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

You can also use apt command to install tm-align.

sudo apt -y install tm-align

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

sudo aptitude install tm-align

Summary

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