freecontact command not found

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

Introduction

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

freecontact: command not found

or when using sudo you get the following error message

sudo: freecontact: command not found

Solutions to freecontact: command not found

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

In Ubuntu freecontact is provided by freecontact package.

freecontact is:

FreeContact is a protein residue contact predictor optimized for speed. Its input is a multiple sequence alignment. FreeContact can function as an accelerated drop-in for the published contact predictors EVfold-mfDCA of DS. Marks (2011) and PSICOV of D. Jones (2011).

FreeContact is accelerated by a combination of vector instructions, multiple threads, and faster implementation of key parts. Depending on the alignment, 8-fold or higher speedups are possible.

A sufficiently large alignment is required for meaningful results. As a minimum, an alignment with an effective (after-weighting) sequence count bigger than the length of the query sequence should be used. Alignments with tens of thousands of (effective) sequences are considered good input.

jackhmmer(1) from the hmmer package, or hhblits(1) from hhsuite can be used to generate the alignments, for example.

This package contains the command line tool freecontact(1).

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

sudo apt-get -y install freecontact

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

You can also use apt command to install freecontact.

sudo apt -y install freecontact

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

sudo aptitude install freecontact

Summary

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