dotter command not found

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

Introduction

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

dotter: command not found

or when using sudo you get the following error message

sudo: dotter: command not found

Solutions to dotter: command not found

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

In Ubuntu dotter is provided by dotter package.

dotter is:

Dotter is a graphical dot-matrix program for detailed comparison of two sequences.

  • Every residue in one sequence is compared to every residue in the other, and a matrix of scores is calculated.
  • One sequence is plotted on the x-axis and the other on the y-axis.
  • Noise is filtered out so that alignments appear as diagonal lines.
  • Pairwise scores are averaged over a sliding window to make the score matrix more intelligible.
  • The averaged score matrix forms a three-dimensional landscape, with the two sequences in two dimensions and the height of the peaks in the third. This landscape is projected onto two dimensions using a grey-scale image - the darker grey of a peak, the higher the score is.
  • The contrast and threshold of the grey-scale image can be adjusted interactively, without having to recalculate the score matrix.
  • An Alignment Tool is provided to examine the sequence alignment that the grey-scale image represents.
  • Known high-scoring pairs can be loaded from a GFF file and overlaid onto the plot.
  • Gene models can be loaded from GFF and displayed alongside the relevant axis.
  • Compare a sequence against itself to find internal repeats.
  • Find overlaps between multiple sequences by making a dot-plot of all sequences versus themselves.
  • Run Dotter in batch mode to create large, time-consuming dot-plots as a background process.

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

sudo apt-get -y install dotter

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

You can also use apt command to install dotter.

sudo apt -y install dotter

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

sudo aptitude install dotter

Summary

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