The code snippet which is appended to the .Rprofile for opening the CIDAtools project automatically doesn't work.
It looks like:
- The library name is incorrect (should be
library(CIDAtools) not library(CIDATools)
- This may not work correctly on Windows due to the
~ path expansion.
|
rprofile <- paste0(c('if( file.exists(path.expand("~/.Rprofile") ) ){', |
|
'source(path.expand("~/.Rprofile"))', |
|
'}', |
|
'library(CIDATools)', |
|
paste0('CIDATools::open_project(localpath="',path,'")')), |
|
collapse="\n") |
The code snippet which is appended to the .Rprofile for opening the CIDAtools project automatically doesn't work.
It looks like:
library(CIDAtools)notlibrary(CIDATools)~path expansion.CIDAtools/R/project.R
Lines 313 to 318 in e84bb43