crac command not found

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

Introduction

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

crac: command not found

or when using sudo you get the following error message

sudo: crac: command not found

Solutions to crac: command not found

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

In Ubuntu crac is provided by crac package.

crac is:

CRAC is a tool to analyze High Throughput Sequencing (HTS) data in comparison to a reference genome. It is intended for transcriptomic and genomic sequencing reads. More precisely, with transcriptomic reads as input, it predicts point mutations, indels, splice junction, and chimeric RNAs (ie, non colinear splice junctions). CRAC can also output positions and nature of sequence error that it detects in the reads. CRAC uses a genome index. This index must be computed before running the read analysis. For this sake, use the command “crac-index” on your genome files. You can then process the reads using the command crac. See the man page of CRAC (help file) by typing “man crac”. CRAC requires large amount of main memory on your computer. For processing against the Human genome, say 50 million reads of 100 nucleotide each, CRAC requires about 40 gigabytes of main memory. Check whether the system of your computing server is equipped with sufficient amount of memory before launching an analysis.

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

sudo apt-get -y install crac

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

You can also use apt command to install crac.

sudo apt -y install crac

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

sudo aptitude install crac

Summary

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