摘要: 6.配置源 conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free conda config --add channels http://mirrors.tuna.tsinghua.edu. 阅读全文
posted @ 2024-03-17 20:42 corrschi 阅读(139) 评论(0) 推荐(0)
摘要: BiocManager::install("GEOquery") install.packages()无法安装 阅读全文
posted @ 2024-03-17 20:35 corrschi 阅读(120) 评论(0) 推荐(0)
摘要: 安装"DESeq2", "edgeR", "limma", "clusterProfiler" bioPackages=c("DESeq2", "edgeR", "limma", "clusterProfiler") #设置镜像 local({ r <- getOption( "repos" ); 阅读全文
posted @ 2024-03-17 19:04 corrschi 阅读(472) 评论(0) 推荐(0)
摘要: devtools可用conda,R的install.packages()以及wget等方式安装,这里我采用install.packages()安装,碰到systemfonts,textshaping, ragg, gert几个依赖包的安装错误。 install.package("devtools") 阅读全文
posted @ 2024-03-17 17:36 corrschi 阅读(1147) 评论(0) 推荐(0)
摘要: 在没有使用对应R包的状态下使用命令sessionInfo(),不会显示该R包信息 在使用对应R包的状态下使用命令 sessionInfo(),会显示该 R 包及其关联 R 包的版本状态 未library(ggplot2)时: sessionInfo() library(ggplot2)时: libr 阅读全文
posted @ 2024-03-17 15:22 corrschi 阅读(50) 评论(0) 推荐(0)
摘要: 1.BiocManager 除非指定某版本BiocManger,可不指定BioManager版本 install.packages("BiocManager") library(BiocManager) BiocManager::install() 指定BiocManger版本: if (!requ 阅读全文
posted @ 2024-03-17 15:13 corrschi 阅读(2913) 评论(0) 推荐(0)