cuffquant command not found

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

Introduction

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

cuffquant: command not found

or when using sudo you get the following error message

sudo: cuffquant: command not found

Solutions to cuffquant: command not found

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

In Ubuntu cuffquant is provided by cufflinks package.

cufflinks is:

Cufflinks assembles transcripts, estimates their abundances, and tests for differential expression and regulation in RNA-Seq samples. It accepts aligned RNA-Seq reads and assembles the alignments into a parsimonious set of transcripts. Cufflinks then estimates the relative abundances of these transcripts based on how many reads support each one.

This package provides the binary of cufflinks and associated tools, i.e. compress_gtf, cuffcompare, cuffdiff, cuffmerge, cuffnorm, cuffquant and gtf_to_sam.

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

sudo apt-get -y install cufflinks

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

You can also use apt command to install cufflinks.

sudo apt -y install cufflinks

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

sudo aptitude install cufflinks

Summary

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