我是靠谱客的博主 愤怒枫叶,这篇文章主要介绍cellchat分析时,cellchat netEmbedding 运行出错解决方案,现在分享给大家,希望可以做个参考。

运行cellchat <- netEmbedding(cellchat,type = “functional”) 报错如下: 

复制代码
1
Error in runUMAP(Similarity, min.dist = 0.3, n.neighbors = k) : Cannot find UMAP, please install through pip (e.g. pip install umap-learn or reticulate::py_install(packages = 'umap-learn')).

因为没有安装umap实现,按提示在终端使用pip install umap-learn,直接运行后报错还是一样,因为你没有指定R使用的python版本:

重启Rstudio后:

复制代码
1
2
3
library(reticulate) use_python('/usr/bin/python3',required = T) #指定安装umap-learn那个版本的python位置 py_version() #看看是不是指定正确

最后运行后报错:

复制代码
1
2
3
4
5
6
7
>cellchat <- netEmbedding(cellchat, type = "functional")  Manifold learning of the signaling networks for a single dataset /Users/yangl/Library/Python/3.8/lib/python/site-packages/umap/umap_.py:132: UserWarning: A large number of your vertices were disconnected from the manifold. Disconnection_distance = 1 has removed 142 edges. It has fully disconnected 3 vertices. You might consider using find_disconnected_points() to find and remove these points from your data. Use umap.utils.disconnected_vertices() to identify them. warn(

或者直接通过运行:reticulate::py_install(packages = ‘umap-learn’)。但也依然报错:

复制代码
1
2
3
4
5
6
7
8
>cellchat <- netEmbedding(cellchat, type = "functional") Manifold learning of the signaling networks for a single dataset C:UserszzuAppDataLocalR-MINI~1envsR-RETI~1libsite-packagesumapumap_.py:133: UserWarning: A large number of your vertices were disconnected from the manifold. Disconnection_distance = 1 has removed 142 edges. It has fully disconnected 3 vertices. You might consider using find_disconnected_points() to find and remove these points from your data. Use umap.utils.disconnected_vertices() to identify them. f"A large number of your vertices were disconnected from the manifold.n"

通过google搜索find_disconnected_points(),GitHub issue中有人提问并得到解决方法:https://github.com/sqjin/CellChat/issues/167(即 source(file = ‘CellChat_issue167_netClusteringFix.R’) #使用外部导入修改的函数),但依然报错如旧。

最后我通过查看GitHub issue中所有与netEmbedding函数相关的issue,最终找到了解决办法:https://github.com/sqjin/CellChat/issues/196 (换个umap算法实现,结果也会有些许差异)

复制代码
1
2
3
install.packages("uwot") library(uwot) cellchat <- netEmbedding(cellchat, umap.method = 'uwot',type = "functional") #调用uwot实现umap, 程序自带,只需使用参数umap.method = 'uwot',无需修改对应的netEmbedding函数源码

本文引用自:cellchat netEmbedding 运行出错-Bluesky's blog (yangl.net)icon-default.png?t=M276http://yangl.net/2021/09/09/cellchat-netembedding-error/

最后

以上就是愤怒枫叶最近收集整理的关于cellchat分析时,cellchat netEmbedding 运行出错解决方案的全部内容,更多相关cellchat分析时,cellchat内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部