pscan-tfbs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pscan-tfbs: command not found
or when using sudo you get the following error message
sudo: pscan-tfbs: command not found
Solutions to pscan-tfbs: command not found
How To Fix pscan-tfbs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pscan-tfbs is provided by pscan-tfbs package.
pscan-tfbs is:
Pscan finds Over-represented Transcription Factor Binding Site Motifs in Sequences from Co-Regulated or Co-Expressed Genes.
Pscan is a software tool that scans a set of sequences (e.g. promoters) from co-regulated or co-expressed genes with motifs describing the binding specificity of known transcription factors and assesses which motifs are significantly over- or under-represented, providing thus hints on which transcription factors could be common regulators of the genes studied, together with the location of their candidate binding sites in the sequences. Pscan does not resort to comparisons with orthologous sequences and experimental results show that it compares favorably to other tools for the same task in terms of false positive predictions and computation time. The website is free and open to all users and there is no login requirement.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pscan-tfbs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pscan-tfbs.
sudo apt -y install pscan-tfbs
Or if you have aptitude installed you can use the following command.
sudo aptitude install pscan-tfbs
Summary
In this tutorial we learn how to fix pscan-tfbs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.