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!
• 5,919 views
•
link
2 answers
chmod a+x blast* , maybe ? (executable rights for all)
• 0 views
•
link
chmod -x blastn disables the execution of the file (clears the flag). chmod +x blastn is the required command.
• 3 views
•
link
Log in to answer this question.
Contact your system admin.
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