computeMedians command not found

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

Introduction

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

computeMedians: command not found

or when using sudo you get the following error message

sudo: computeMedians: command not found

Solutions to computeMedians: command not found

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

In Ubuntu computeMedians is provided by clonalorigin package.

clonalorigin is:

Bacteria, unlike us, can reproduce on their own. They do however have mechanisms that transfer DNA between organisms, a process more formally known as recombination. The mechanisms by which recombination takes place have been studied extensively in the laboratory but much remains to be understood concerning how, when and where recombination takes place within natural populations of bacteria and how it helps them to adapt to new environments. ClonalOrigin performs a comparative analysis of the sequences of a sample of bacterial genomes in order to reconstruct the recombination events that have taken place in their ancestry.

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

sudo apt-get -y install clonalorigin

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

You can also use apt command to install clonalorigin.

sudo apt -y install clonalorigin

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

sudo aptitude install clonalorigin

Summary

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