Hi! Total noob here, can anybody help me debug this? I'm trying to install EWCE (https://bioc.ism.ac.jp/packages/3.4/bioc/html/EWCE.html) and failed on two different machines (RStudio Server Pro @ my local HPC & RStudio on my PC). > source("http://bioconductor.org/biocLite.R") Bioconductor version 3.7 (BiocInstaller 1.30.0), ?biocLite for help > biocLite("EWCE") BioC_mirror: https://bioc.ism.ac.jp Using Bioconductor 3.7 (BiocInstaller 1.30.0), R 3.5.0 (2018-04-23). Installing package(s) ‘EWCE’ installation path not writeable, unable to update packages: foreign, mgcv Warning message: package ‘EWCE’ is not available (for R version 3.5.0)
I've also tried:
BiocManager::install("EWCE")
but it gives me the same error :(
Nevermind, managed to install it directly from github this way:
install.packages("devtools")
library(devtools)
install_github("NathanSkene/EWCE")