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
Hi and firstly thanks for cola - it's a great package!
I just wanted to let you know of something that's not working for me. When I pass a cluster object into ATC() I get an error. run_all_consensus_partition_methods wasn't working and so I looked into the traceback and found this was the cause.
library(parallel)
ncores= detectCores()
cl= makeCluster(ncores-4)
ATC(mat, cores=1) #works
ATC(mat, cores=4) #works
ATC(mat, cores=cl) #'list' object cannot be coerced to type 'double'
I will use the cores = int functionality for now, but just wanted to let you know this wasn't working as intended (at least for me).
The text was updated successfully, but these errors were encountered:
Hi and firstly thanks for cola - it's a great package!
I just wanted to let you know of something that's not working for me. When I pass a cluster object into
ATC()
I get an error.run_all_consensus_partition_methods
wasn't working and so I looked into the traceback and found this was the cause.I will use the
cores = int
functionality for now, but just wanted to let you know this wasn't working as intended (at least for me).The text was updated successfully, but these errors were encountered: