It looks like you are using Ubuntu or a derivative. On this distribution, the command-line interface will attempt to guess which package to install, if you type the name of a program that is not available.
Available programs are in the directories listed by the command echo $PATH. Therefore, either you need to add in your PATH the blastn program that you compiled, or you need give the full path to your command.
In the documentation that you cited in your question, there are explanations on how to add blastn to you PATH, see here.
Probably the contents of the PATH variable still does not reflect where the blastn file is located.
As an alternative to configure the PATH variable, you can call the program using its absolute path. For instance, if your home directory is /home/shiroemonmadeon, and if you unpacked the ncbi-blast-2.3.0+-x64-linux.tar.gz archive in your home directory, then you would be able to run the blastn program by typing /home/shiroemonmadeon/ncbi-blast-2.3.0+/bin/blastn.
If you would like efficient help from me or others in this forum, you really need to provide more information, otherwise, nothing can be done. First, what did you download exactly, and where did you unpack that file?
In the documentation (the link I gave before), there is the following command:
export PATH=“$PATH:$HOME/ncbi-blast-2.2.29+/bin”
But it needs two changes to make it work: first, correct the version number (2.3.0 instead of 2.2.29), and second replace the typographical quotation marks (”) by their ASCII equivalent (").
Thank you. I use Ubuntu. I did that, but nothing changed. It still notified blastn is not installed :(
Probably the contents of the
PATH
variable still does not reflect where theblastn
file is located.As an alternative to configure the
PATH
variable, you can call the program using its absolute path. For instance, if your home directory is/home/shiroemonmadeon
, and if you unpacked thencbi-blast-2.3.0+-x64-linux.tar.gz
archive in your home directory, then you would be able to run theblastn
program by typing/home/shiroemonmadeon/ncbi-blast-2.3.0+/bin/blastn
.I tried. but it didn't run
If you would like efficient help from me or others in this forum, you really need to provide more information, otherwise, nothing can be done. First, what did you download exactly, and where did you unpack that file?
I downloaded and unpacked. I installed Blast 2.3.0. My problem: I only run BLAST when I type :
I want to run Blast without typing
./ncbi-blast-2.3.0+/bin/
before. ie How to run BLAST by openning cmd and type:In the documentation (the link I gave before), there is the following command:
But it needs two changes to make it work: first, correct the version number (2.3.0 instead of 2.2.29), and second replace the typographical quotation marks (
”
) by their ASCII equivalent ("
).aaaaa. THANK YOU SO MUCHHHH. The problem is (
"
). OMG. THANK YOU!!!!!