sift_feed_to_chr_coords_batch.pl command not found

In this troubleshooting guide we learn how to fix sift_feed_to_chr_coords_batch.pl command not found error message

Introduction

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

sift_feed_to_chr_coords_batch.pl: command not found

or when using sudo you get the following error message

sudo: sift_feed_to_chr_coords_batch.pl: command not found

Solutions to sift_feed_to_chr_coords_batch.pl: command not found

How To Fix sift_feed_to_chr_coords_batch.pl: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu sift_feed_to_chr_coords_batch.pl is provided by sift package.

sift is:

SIFT is a sequence homology-based tool that sorts intolerant from tolerant amino acid substitutions and predicts whether an amino acid substitution in a protein will have a phenotypic effect. SIFT is based on the premise that protein evolution is correlated with protein function. Positions important for function should be conserved in an alignment of the protein family, whereas unimportant positions should appear diverse in an alignment.

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

sudo apt-get -y install sift

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

You can also use apt command to install sift.

sudo apt -y install sift

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

sudo aptitude install sift

Summary

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