Now i'm getting this error:
This is my code:
I obtained this:
And after running:
(...) the error warning is appearing.
Any idea how to fix that?
I also want to change the colnames, how can i do that?
Thanks.
Code:
Warning messages: 1: glm.fit: algorithm did not converge 2: In estimateDispersionsFit(object, fitType = fitType, quiet = quiet) : parametric fit failed, trying local fit. use plotDispEsts() to check the quality of the local fit
Code:
#Count matrix input Cele_SPvsEB = read.csv (file.choose(), header=TRUE, row.names=1) CeleDesign <- data.frame( row.names = colnames(Cele_SPvsEB$target_id), condition = factor(c("SP", "SP", "EB", "EB"))) dds <- DESeqDataSetFromMatrix(countData = Cele_SPvsEB, colData = CeleDesign, design = ~ condition) dds
Code:
class: DESeqDataSet dim: 198821 4 exptData(0): assays(1): counts rownames(198821): comp100_c0_seq1 comp100004_c0_seq1 ... comp99994_c0_seq1 comp99999_c0_seq1 rowData metadata column names(0): colnames(4): 1 2 3 4 colData names(1): condition
Code:
#Differential expression analysis dds <- DESeq(dds)
Any idea how to fix that?
I also want to change the colnames, how can i do that?
Thanks.
Comment