You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, developer!
I encountered an error while using merge to combine multiple Seurat objects (a total of 315,177 * 315,658). My server has 1TB of memory, which should be sufficient to handle this data. The error message is as follows:
seob_list <- list()
for(file in input_files){
seob <- readRDS(file)
sample = seob$sample_id %>% unique()
cat('making ', sample, '\n')
print(seob)
seob_list[[sample]] = seob
}
seob <- merge(
x = seob_list[[1]],
y = seob_list[-1],
add.cell.ids = names(seob_list)
)
Error in cbind.Matrix(x, y, deparse.level = 0L) :
p[length(p)] cannot exceed 2^31-1
Hello, developer!
I encountered an error while using merge to combine multiple Seurat objects (a total of 315,177 * 315,658). My server has 1TB of memory, which should be sufficient to handle this data. The error message is as follows:
The text was updated successfully, but these errors were encountered: