sqjin / CellChat

R toolkit for inference, visualization and analysis of cell-cell communication from single-cell data
GNU General Public License v3.0
632 stars 144 forks source link

netClustering still use future::multiprocess #695

Open wwzhang opened 1 year ago

wwzhang commented 1 year ago

multiprocess is removed from the recent version of future package, which lead to error message "No such strategy for futures: 'multiprocess'".

Please help to change it to use multisession

SamuelAlvarezArguedas commented 1 year ago

I have just changed multiprocess for multisession (recommended) or multicore. The script would be this: cellchat <- subsetData(cellchat) future::plan("multisession", workers = 4)

And nothing else changed.