Error message : DESeq2
1
0
Entering edit mode
@5e002df5
Last seen 2.2 years ago
Japan

Enter the body of text here

Code should be placed in three backticks as shown below

```r

include your problematic code here with any corresponding output

please also include the results of running the following in an R session

install.packages("BiocManager") BiocManager::install("DESeq2") library(DESeq2) countData <- as.matrix(read.csv("count.csv", row.names="id")) head(countData) condition <- factor(c(rep("NBC",3), rep("dpd1C",3), rep("NBP",3), rep("dpd1P",3), rep("NBD",3), rep("dpd1D",3))) coldata <- data.frame(row.names = colnames(countData), condition) coldata dds <- DESeqDataSetFromMatrix(countData=countdata, colData=coldata, design=~condition)

```Error in h(simpleError(msg, call)) : error in evaluating the argument 'x' in selecting a method for function 'ncol': object 'countdata' not found

DESeq2 • 532 views
ADD COMMENT
1
Entering edit mode
@mikelove
Last seen 1 day ago
United States

Capitalization matters in R.

> x <- 2
> X
Error: object 'X' not found
ADD COMMENT

Login before adding your answer.

Traffic: 569 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