C-Sibelia.py command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
C-Sibelia.py: command not found
or when using sudo you get the following error message
sudo: C-Sibelia.py: command not found
Solutions to C-Sibelia.py: command not found
How To Fix C-Sibelia.py: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu C-Sibelia.py is provided by sibelia package.
sibelia is:
Sibelia (Synteny Block ExpLoration tool) is a comparative genomics tool: It assists biologists in analysing the genomic variations that correlate with pathogens, or the genomic changes that help microorganisms adapt in different environments. Sibelia will also be helpful for the evolutionary and genome rearrangement studies for multiple strains of microorganisms.
Sibelia is useful in finding:
- shared regions,
- regions that present in one group of genomes but not in others,
- rearrangements that transform one genome to other genomes.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sibelia
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sibelia.
sudo apt -y install sibelia
Or if you have aptitude installed you can use the following command.
sudo aptitude install sibelia
Summary
In this tutorial we learn how to fix C-Sibelia.py command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.