RNAeffective command not found

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

Introduction

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

RNAeffective: command not found

or when using sudo you get the following error message

sudo: RNAeffective: command not found

Solutions to RNAeffective: command not found

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

In Ubuntu RNAeffective is provided by rnahybrid package.

rnahybrid is:

RNAhybrid is a tool for finding the minimum free energy hybridisation of a long and a short RNA. The hybridisation is performed in a kind of domain mode, ie. The short sequence is hybridised to the best fitting part of the long one. The tool is primarily meant as a means for microRNA target prediction.

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

sudo apt-get -y install rnahybrid

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

You can also use apt command to install rnahybrid.

sudo apt -y install rnahybrid

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

sudo aptitude install rnahybrid

Summary

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