Hi all,
I am new to Bioconductors and I am trying to read some set of CEL files using Oligo package in R:
source("https://bioconductor.org/biocLite.R")
biocLite("oligo")
biocLite("pd.hta.2.0")
library(oligo)
library(pd.hta.2.0)
celFiles <- list.celfiles(full.names=TRUE)
affyRaw <- read.celfiles(celFiles)
Unfortuntely, the read.celfiles(celFiles) line gives me the following error:
Error: These are not readable: ./GSM1487519_TreatedChip9.CEL
My R and Bioconductor configurations are
> sessionInfo()
R version 3.4.1 (2017-06-30)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
and
> source("https://bioconductor.org/biocLite.R")
Bioconductor version 3.5 (BiocInstaller 1.26.0), ?biocLite for help
Note: However, if I use the exact same R 3.4.1 and Bioconductor 3.5 in Mac, I can read the same CEL files using pd.hta.2.0 without any errors.
Any suggestions/comments are welcome.
Thanks!