Question: 450k methylation data: error loading
0
nickswim9 • 0 wrote:
I'm having trouble loading the series matrix data into R. I downloaded the file from this link: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE60132
I then saved it on my desktop. Below is the code and error message I'm getting.
> setwd("C:/Users/Nick/Desktop")
> data <- read.delim(file = "GSE60132_series_matrix.txt")
Error: cannot allocate vector of size 349.1 Mb
In addition: Warning messages:
1: In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
Reached total allocation of 8048Mb: see help(memory.size)
2: In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
Reached total allocation of 8048Mb: see help(memory.size)
3: In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
Reached total allocation of 8048Mb: see help(memory.size)
4: In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
Reached total allocation of 8048Mb: see help(memory.size)
> data <- read.delim(file = "GSE60132_series_matrix.txt", row.names=1)
ADD COMMENT
• link
•
modified 5.3 years ago
by
Devon Ryan ♦ 98k
•
written
5.3 years ago by
nickswim9 • 0