This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Blastn Permission Denied

Hi,

I downloaded NCBI's BLAST. Every time I try to run blastn it get permission denied. I moved it into the path I had put the path right before it. I changed the permissions with chmod -x blastn (which turned the executable from green to white). Is there an extra step in the install? What am I missing?

Thanks!

blastn

man chmod Also helps and keeps your admin happy

What? Read the manual? Thats just crazy :-).

chmod -x removes execute right, +x adds it! Solved.

thank you very much

2 answers

chmod a+x blast* , maybe ? (executable rights for all)

chmod -x blastn disables the execution of the file (clears the flag). chmod +x blastn is the required command.

Log in to answer this question.