mhahsler / rBLAST

Interface for the Basic Local Alignment Search Tool (BLAST) - R-Package
GNU General Public License v3.0
103 stars 22 forks source link

Documentation error #5

Closed kuzmenkov111 closed 6 years ago

kuzmenkov111 commented 6 years ago

Hi! Thank you for great tool! There is mistake in ?blast documentation.

R needs to be able to find the executable (mostly an issue with Windows). Try 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 Sys.setenv(PATH = paste(Sys.getenv("PATH"), "path_to_BLAST", sep=":")).

It must be ";" separator

mhahsler commented 6 years ago

Seems like Windows uses ; instead of :. This is now fixed in the documentation.