DESeq2 problem "DESeqDataSetFromMatrix function"
1
0
Entering edit mode
3.5 years ago

I have a problem with DESeq2 function DESeqDataSetFromMatrix:

library(DESeq2)
library(ggplot2)

countData <- read.csv('file.csv', header = TRUE, sep = ",")
head(countData)

metaData <- read.csv('file_meta.csv', header = TRUE, sep = ",")
metaData

dds <- DESeqDataSetFromMatrix(countData=countData, 
                              colData=metaData, 
                              design=~Treatment, tidy = TRUE)

and after the last one I have got the response:

"Error in DESeqDataSetFromMatrix(countData = countData, colData = colData, : could not find function "DESeqDataSetFromMatrix"

Do you know what is wrong? Could you help me?

R • 1.6k views
ADD COMMENT
1
Entering edit mode
3.5 years ago

What is the output of library(DESeq2) ?

Is it loading without any error ?

ADD COMMENT

Login before adding your answer.

Traffic: 2908 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6