You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I install jackstraw from CRAN it does not work because it fails to install two packages: qvalue and lfa e.g.
install.packages('jackstraw')
> library(jackstraw)
Error: package or namespace load failed for ‘jackstraw’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘lfa’
solution
After installing these two packages I can load jackstraw
# install.packages("devtools")
library("devtools")
install_github("Storeylab/lfa") # see note for OS X users on lfa's github page
install_github("jdstorey/qvalue")
You might consider having these installed automatically or making them optional. Adding this as a note on the readme would also be helpful.
Thanks for raising this issue. I've updated the README file to reflect your suggestion.
FYI, I had included biocViews: in the description file to automatically search and install the bioconductor packages (r-lib/devtools#700 (comment)). But it seems that trick doesn't work always.
problem
When I install jackstraw from CRAN it does not work because it fails to install two packages:
qvalue
andlfa
e.g.solution
After installing these two packages I can load jackstraw
You might consider having these installed automatically or making them optional. Adding this as a note on the readme would also be helpful.
system details
The text was updated successfully, but these errors were encountered: