suitename command not found

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

Introduction

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

suitename: command not found

or when using sudo you get the following error message

sudo: suitename: command not found

Solutions to suitename: command not found

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

In Ubuntu suitename is provided by suitename package.

suitename is:

Suitename is a program that supports the ROC RNA Ontology Consortium consensus RNA backbone nomenclature and conformer-list development.

From dihedral-angle input for a specific RNA structure (usually from Dangle), Suitename categorizes the RNA backbone geometry of each suite (the sugar-to-sugar version of a residue) either as an outlier or as belonging to one of the 53 defined conformer bins. The output is either a one-line-per-suite report, or a linear conformer string (as shown below the image here) in one of several variant formats. Suitename is built into MolProbity, producing entries in the multi-criterion chart for an RNA model and also a suitestring file.

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

sudo apt-get -y install suitename

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

You can also use apt command to install suitename.

sudo apt -y install suitename

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

sudo aptitude install suitename

Summary

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