Entering edit mode
                    9.2 years ago
        ta_awwad
        
    
        ▴
    
    350
    Hi, I ran the following script on R version 3.2 and everything was fine:
conds<- c("kd1","kd1","kd2","kd2","GFP","GFP")
Design<-data.frame(condition=conds,
                   row.names=paste(conds,rep(c(1,2),3),
                   sep="_"))
dds <- DESeqDataSetFromMatrix(countData = assay(se),
                             colData = Design,
                             design = ~ condition)
however, when I updated R into 3.3 I start getting the following error message:
Error in FUN(X[[i]], ...) : 
  assay colnames() must be NULL or equal colData rownames()
I tried to follow many solutions but non of them worked .
can anyone help
thanks much
whereas,
There's your problem then.
thanks I solved the problem
got it .. thanks much