biocUpdate command not found

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

Introduction

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

biocUpdate: command not found

or when using sudo you get the following error message

sudo: biocUpdate: command not found

Solutions to biocUpdate: command not found

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

In Ubuntu biocUpdate is provided by bitseq package.

bitseq is:

BitSeq is an application for inferring expression levels of individual transcripts from sequencing (RNA-Seq) data and estimating differential expression (DE) between conditions. An advantage of this approach is the ability to account for both technical uncertainty and intrinsic biological variance in order to avoid false DE calls. The technical contribution to the uncertainty comes both from finite read-depth and the possibly ambiguous mapping of reads to multiple transcripts.

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

sudo apt-get -y install bitseq

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

You can also use apt command to install bitseq.

sudo apt -y install bitseq

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

sudo aptitude install bitseq

Summary

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