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
Thank you very much for your suggestion.
I have added a "system os check" part in the function from SpaCET.
If a user runs SpaCET in Windows OS, coreNo will be set as 1 automatically.
parallel::mclapply(1:spotNum, LRNetworkScore, mc.cores = coreNo)
Windows not support coreNo>1
can add system detection? or use
"
numCores <- detectCores() - 1
cl <- makeCluster(numCores)
LRNetworkScoreList <- parLapply(cl, 1:spotNum, LRNetworkScore)
stopCluster(cl)
"
The text was updated successfully, but these errors were encountered: