Skip to content

Commit

Permalink
Fixed path separator for Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhahsler committed Feb 25, 2018
1 parent 68e0b4f commit c4985c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion man/BLAST.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ R needs to be able to find the executable (mostly an issue with Windows).
Try \code{Sys.which("blastn")} to see if the program is properly installed.
If not, then you probably need to set the environment variable called PATH
using something like
\code{Sys.setenv(PATH = paste(Sys.getenv("PATH"), "path_to_BLAST", sep=":"))}.
\code{Sys.setenv(PATH = paste(Sys.getenv("PATH"), "path_to_BLAST", sep= .Platform$path.sep))}.
You can use Sys.getenv("PATH") first to see what is currently in the
search path.

Expand Down

0 comments on commit c4985c1

Please sign in to comment.