SummarizedExperiment icon indicating copy to clipboard operation
SummarizedExperiment copied to clipboard

loading package taking too much memory

Open spocks opened this issue 3 years ago • 2 comments

SummarizedExperiment is using too much memory and time to load. The code bellow and results indicate that it is taking 328MB of memory. For a single use this is not a big issue. However using library(SummarizedExperiment) on high performance computing is causing the code to crash due this high memory use.

library(profvis)			
profvis({
  library(SummarizedExperiment)
})

Screenshot_2020-08-27_13-37-48

spocks avatar Aug 27 '20 18:08 spocks