Q1:生信人的20个R语言习题中:数据包: ALL, CLL, pasilla, airway;安装失败咋整?
#A1
rm(list = ls())
options()$repos
options()$BioC_mirror
#options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/")
options(BioC_mirror="http://mirrors.tuna.tsinghua.edu.cn/bioconductor/")
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/"))
options()$repos
options()$BioC_mirror
BiocManager::install(c("ALL","CLL", "pasilla", "airway" ),ask = F,update = F)
#最后一行是重点。【简书上有代码,但是跑了一下,失败】
相关代码【有注释】:https://zhuanlan.zhihu.com/p/108120405
芯片数据分析步骤6 探针注释【里面有关提取使用函数有详细介绍】
Q2:
网友评论