Hi, I was doing part of a RNAseq workflow in R 3.1.1 using command line. But know I want to generate some graph so I decided to copy my RData file to open it in my local computer and continue working with R GUI version (also 3.1.1).
When I open the file I got this messsage:
> load("~/Documents/KIRK_LAB/AD_RNA-seq/results/ale.RData")
Warning: namespace ‘S4Vectors’ is not available and has been replaced
by .GlobalEnv when processing object ‘hse’
I was trying to install S4Vectors but I found out that there is not version for R c 3.1.1
> biocLite("S4Vectors")
BioC_mirror: http://bioconductor.org
Using Bioconductor version 2.14 (BiocInstaller 1.14.3), R version 3.1.1.
Installing package(s) 'S4Vectors'
Warning message:
package ‘S4Vectors’ is not available (for R version 3.1.1)
How can I have this working?
I will appreciate some help