dnaplotter command not found

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

Introduction

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

dnaplotter: command not found

or when using sudo you get the following error message

sudo: dnaplotter: command not found

Solutions to dnaplotter: command not found

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

In Ubuntu dnaplotter is provided by artemis package.

artemis is:

Artemis is a genome browser and annotation tool that allows visualisation of sequence features, next generation data and the results of analyses within the context of the sequence, and also its six-frame translation.

This package includes the Artemis genome browser, the Artemis Comparison Tool (ACT), and the DNAplotter and BamView utilities.

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

sudo apt-get -y install artemis

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

You can also use apt command to install artemis.

sudo apt -y install artemis

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

sudo aptitude install artemis

Summary

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