jellyfish1 command not found

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

Introduction

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

jellyfish1: command not found

or when using sudo you get the following error message

sudo: jellyfish1: command not found

Solutions to jellyfish1: command not found

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

In Ubuntu jellyfish1 is provided by jellyfish1 package.

jellyfish1 is:

JELLYFISH is a tool for fast, memory-efficient counting of k-mers in DNA. A k-mer is a substring of length k, and counting the occurrences of all such substrings is a central step in many analyses of DNA sequence. JELLYFISH can count k-mers using an order of magnitude less memory and an order of magnitude faster than other k-mer counting packages by using an efficient encoding of a hash table and by exploiting the “compare-and-swap” CPU instruction to increase parallelism.

JELLYFISH is a command-line program that reads FASTA and multi-FASTA files containing DNA sequences. It outputs its k-mer counts in an binary format, which can be translated into a human-readable text format using the “jellyfish dump” command.

This is the latest version of the 1.x series of jellyfish which is used by some other applications that are not compatible with version 2.x which is provided inside the jellyfish package.

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

sudo apt-get -y install jellyfish1

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

You can also use apt command to install jellyfish1.

sudo apt -y install jellyfish1

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

sudo aptitude install jellyfish1

Summary

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