This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Configuring Path To Point To The Bin Directory Inside The Ncbi Folder After Installing Blast+ Standalone

I can't seem to get Terminal to accept the syntax described on NCBI's help page regarding configuration of the standalone BLAST installation. Here's my syntax and the error messages: alt text

blast blast

I opt to close as off-topic, your question is "how do I set the PATH in bash/MacOSX" hardly related to bioinformatics, even if you want to set the path to blast.

Sorry! Where should I have submitted this question?

2 answers

setenv is a csh/tcsh shell command. As your screenshot shows, your terminal is using the BASH shell, not the CSH shell.

Solution 1: install csh and try again. Solution 2 - use the BASH shell syntax:

export PATH=$PATH:/Users/markfisher/ncbi-blast-2.2.25+/bin

Here is an [?]answer[?] for setting path in osx.

Log in to answer this question.