Hi,
I am running (in R-studio) an integration analysis of scRNA-seq with Seurat, this is part of the script:
TD60_merge.features <- SelectIntegrationFeatures(object.list = TD60_merge.list, nfeatures = 3000)
TD60_merge.list <- PrepSCTIntegration(object.list = TD60_merge.list, anchor.features = TD60_merge.features,
verbose = FALSE)
TD60_merge.anchors <- FindIntegrationAnchors(object.list = TD60_merge.list, normalization.method = "SCT",
anchor.features = TD60_merge.features, verbose = FALSE)
TD60_merge.integrated <- IntegrateData(anchorset = TD60_merge.anchors, normalization.method = "SCT",
verbose = FALSE)
After the last command, I got this message:
Error: vector memory exhausted (limit reached?)
I have a MacBook Pro with 16 GB 2133 MHz LPDDR3
Can someone help me with this issue? Thank you
What did you try? https://stackoverflow.com/questions/51295402/r-on-macos-error-vector-memory-exhausted-limit-reached Did you monitor memory consumption during the process using the Activity Monitor? How big are the elements in your global environment?