idba_tran command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
idba_tran: command not found
or when using sudo you get the following error message
sudo: idba_tran: command not found
Solutions to idba_tran: command not found
How To Fix idba_tran: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu idba_tran is provided by idba package.
idba is:
IDBA stands for iterative de Bruijn graph assembler. In computational sequence biology, an assembler solves the puzzle coming from large sequencing machines that feature many gigabytes of short reads from a large genome.
This package provides several flavours of the IDBA assembler, as they all share the same source tree but serve different purposes and evolved over time.
IDBA is the basic iterative de Bruijn graph assembler for second-generation sequencing reads. IDBA-UD, an extension of IDBA, is designed to utilize paired-end reads to assemble low-depth regions and use progressive depth on contigs to reduce errors in high-depth regions. It is a generic purpose assembler and especially good for single-cell and metagenomic sequencing data. IDBA-Hybrid is another update version of IDBA-UD, which can make use of a similar reference genome to improve assembly result. IDBA-Tran is an iterative de Bruijn graph assembler for RNA-Seq data.
To fix this problem, we can install more using the command below.
sudo apt-get -y install idba
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install idba.
sudo apt -y install idba
Or if you have aptitude installed you can use the following command.
sudo aptitude install idba
Summary
In this tutorial we learn how to fix idba_tran command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.