BLAST Command Not Found Under Parent Directory
I'm trying to run blast commands under the parent directory yet im being told "command not found" What should I do?
rna-seq
sequence
• 4,899 views
•
link
written
by
yashsharma1112000 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Failing to run tblastn
written by langziv •Hello. I'm trying to run tblastn and I get an error message. I'm posting the commands I gave and the error message I got, with …
-
Trouble running Mugsy
written by merzanaeem007 •Hello, I'm new to ubuntu/linux and Mugsy. I'm supposed to use mugsy to align a few thousand viral genome (HIV1) however upon following the steps …
-
clustalw won't work with macOS catalina suggestions
written by yashsharma1112000 •Hi! I attempted to run 'run_alignment.py' using a python script, however, discorvered that clustalw is a 32-bit program. Being on macOS Catalina (10.15) i realized …
-
Command for Running Vcfanno Software
written by bioinformatics98 •Hello all, I am trying to run Vcfanno (https://github.com/brentp/vcfanno) on the example data they have given, and I do not know what my command should …
-
download refseq of thousand of assembly file from NCBI
written by Shelle •I want to download many bacteria fasta files with the .fna.gz extension from NCBI i have tried the commands below but none of them is …
-
Cannot run FASTQC on terminal
written by fatin nadhirah •1) Hi, Im using Mac OS and I'm having difficulty to run fastqc using terminal. It shows like this: This is the source distribution of …
-
Admixture won't run
written by weave271 •Hi there, I'm trying to get the admixture program to run but I keep getting an error saying that the admixture command is not found. …
-
BLAST+ installation through SSH ,PUTTY
written by tcf.hcdgHello I know how to installed command line BLAST(2.2.31) previously, I installed and configured it on windows and unix environment (both are working perfectly). But …
-
igBLAST query/options error
written by moran.an •When I try to run this command: igblastn -germline_db_V $GERMLINE_DB"/human_gl_HV" \ -germline_db_J $GERMLINE_DB"/human_gl_HJ" \ -germline_db_D $GERMLINE_DB"/human_gl_HD" \ -organism human -domain_system imgt \ -query $WORKDIR"/"$FILE".fasta" \ …
-
Analyzing Unknown Dna Sequence And Suggesting Origin
written by Mike •<p>I have been given an unknown nucleotide sequence and need to analyze it using bioinformatic methods that have not been explained very well. I need …
Did you follow
blast+command line guide? What OS are you trying to use blast under? Did you install blast yourself or you are using it on a shared compute system?Command not found errors are generally cured by adding the directory containing the executables to your
$PATHvariable: See the answer here.Ive been exporting PATH multiple times now and have been using the BLAST program for a while now, yet, all of a sudden, I'm now unable to perform any blast commands. I'm using macOS catalina 10.15. I installed it on a personal-work comupter.
Image of error: https://imgur.com/a/XqQBGbq
I would recommend installing with conda, if you aren't already. It has taken care of almost all of my $PATH issues.
https://anaconda.org/bioconda/blast
Couple of things.
blastis not a valid program. Please tryblastnorblastpetc. You should also check output ofecho $PATHto see contents of that variable and ensure that the directory you are looking at is included in that. If not reexport byexport PATH=$PATH:/path_to/dir_w_blast. While this will work proper to do that is described in second answer in this thread (since you are usingzsh).