美文网首页
R IN ACTION SELF-TUTORIAL-72 dev

R IN ACTION SELF-TUTORIAL-72 dev

作者: RashidinAbdu | 来源:发表于2021-10-31 18:02 被阅读0次
    • 这个是用来处理微生物组的包,然后安装时发现报错!
    • 用以下方法可以有效解决
    install.packages('devtools')
    library(devtools)
    install_github("tvatanen/microbiomics", host = "api.github.com")
    

    这样就解决了!

    image.png
    • 安装phyloseq:
    if (!requireNamespace("BiocManager", quietly = TRUE))
        install.packages("BiocManager")
    
    BiocManager::install("phyloseq")
    

    参考:

    https://microbiome.github.io/tutorials/
    

    相关文章

      网友评论

          本文标题:R IN ACTION SELF-TUTORIAL-72 dev

          本文链接:https://www.haomeiwen.com/subject/jqnoaltx.html