首页 > 解决方案 > 尝试在 R 中激活 jaspershen/MSannotator 包

问题描述

我正在尝试使用“jaspershen/MSannotator”包中的一些命令。我尝试安装软件包:

install.packages("remotes")
remotes::install_github("jaspershen/MSannotator")
library(remotes)

但不会出现来自包“jaspershen/MSannotator”的命令。我究竟做错了什么?

标签: rpackage

解决方案


我必须添加更多软件包才能使其工作:

devtools::install_github('omegahat/XMLSchema');devtools::install_github('cran/SSOAP')
BiocManager::install("Rdisop")
BiocManager::install("GO.db")

library(Rdisop)
library(xMSannotator)

推荐阅读