Entering edit mode
4.5 years ago
imrankhanbioinfo
▴
70
Hi Guys, I am encountering an error when creating dds (DESeqDataSet). I was running DeSeq one day back everything was good but now I am having some issues like not able to find some function. I suspect its coz of my R studio (Ver. 1.2.5033). What do you think? After loading some packages I can't access functions associated with them. Best: Imran
require(DESeq2)
dds<-DESeqDataSetFromMatrix(countData=mycounts,
colData=metadata,
design=~Condition,
tidy=TRUE)
Error in DESeqDataSetFromMatrix(countData = mycounts, colData = metadata, :
could not find function "DESeqDataSetFromMatrix"
Hi Imran, please show the output of
sessionInfo()
? Just also check to see ifDESeq2::DESeqDataSetFromMatrix(...)
functions ?Also,
require
doesn't throw an error, can you trylibrary
insead?