sumaclust command not found

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

Introduction

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

sumaclust: command not found

or when using sudo you get the following error message

sudo: sumaclust: command not found

Solutions to sumaclust: command not found

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

In Ubuntu sumaclust is provided by sumaclust package.

sumaclust is:

With the development of next-generation sequencing, efficient tools are needed to handle millions of sequences in reasonable amounts of time. Sumaclust is a program developed by the LECA. Sumaclust aims to cluster sequences in a way that is fast and exact at the same time. This tool has been developed to be adapted to the type of data generated by DNA metabarcoding, i.e. entirely sequenced, short markers. Sumaclust clusters sequences using the same clustering algorithm as UCLUST and CD- HIT. This algorithm is mainly useful to detect the ’erroneous’ sequences created during amplification and sequencing protocols, deriving from ’true’ sequences.

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

sudo apt-get -y install sumaclust

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

You can also use apt command to install sumaclust.

sudo apt -y install sumaclust

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

sudo aptitude install sumaclust

Summary

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