runJemboss.sh command not found

In this troubleshooting guide we learn how to fix runJemboss.sh command not found error message

Introduction

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

runJemboss.sh: command not found

or when using sudo you get the following error message

sudo: runJemboss.sh: command not found

Solutions to runJemboss.sh: command not found

How To Fix runJemboss.sh: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu runJemboss.sh is provided by jemboss package.

jemboss is:

EMBOSS is a free Open Source software analysis package specially developed for the needs of the molecular biology (e.g. EMBnet) user community. The software automatically copes with data in a variety of formats and even allows transparent retrieval of sequence data from the web. Also, as extensive libraries are provided with the package, it is a platform to allow other scientists to develop and release software in true open source spirit. EMBOSS also integrates a range of currently available packages and tools for sequence analysis into a seamless whole. EMBOSS breaks the historical trend towards commercial software packages.

Jemboss is a Graphical User Interface (GUI) to EMBOSS, the European Molecular Biology Open Software Suite. It is part of the EMBOSS distribution.

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

sudo apt-get -y install jemboss

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

You can also use apt command to install jemboss.

sudo apt -y install jemboss

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

sudo aptitude install jemboss

Summary

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