monocle3 进行拟时轨迹分析时候,报错:
cds <- cluster_cells(cds)
Error in leidenbase::leiden_find_partition(graph_result[["g"]], partition_type = partition_type, :
REAL() can only be applied to a 'numeric', not a 'NULL'
解决方法:设定参数cluster_method = 'louvain'
cds <- cluster_cells(cds, cluster_method = 'louvain')