BioConductor 结决 没有"DESeqDataSetFromMatrix"这个函数

bioconductor 的安装与使用

R Version 3.6
https://bioconductor.org/install/

if (!requireNamespace(“BiocManager”, quietly = TRUE))
install.packages(“BiocManager”)
BiocManager::install(‘soft package’)

dds <- DESeqDataSetFromMatrix(countData, colData, design= ~ condition)
Error in DESeqDataSetFromMatrix(countData, colData, design = ~condition) :
没有"DESeqDataSetFromMatrix"这个函数

出现上述错误后,直接安装bioconductor,通过Bio Manger::install(‘DESeq2’)
如果继续提示还有未安装上的包,继续使用这个安装包的命令安装相应的包。

library (‘DESeq2’)

显示成功后,我们继续进项dds 这个操作就可可以了

你可能感兴趣的:(BioConductor 结决 没有"DESeqDataSetFromMatrix"这个函数)