mcapply: all scheduled cores encountered errors in user code
问题 The following is my code. I am trying get the list of all the files (~20000) that end with .idat and read each file using the function illuminaio::readIDAT . library(illuminaio) library(parallel) library(data.table) # number of cores to use ncores = 8 # this gets all the files with .idat extension ~20000 files files <- list.files(path = './', pattern = "*.idat", full.names = TRUE) # function to read the idat file and create a data.table of filename, and two more columns # write out as csv