美文网首页
【生信人的20个R语言习题】R语言学习Q&A

【生信人的20个R语言习题】R语言学习Q&A

作者: 医只蜗牛 | 来源:发表于2021-07-02 12:33 被阅读0次

    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:

    
    

    相关文章

      网友评论

          本文标题:【生信人的20个R语言习题】R语言学习Q&A

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