This is a test version of Biostars. For the public version, visit https://www.biostars.org.
DeSeq2 MA plot

I use the following codes and generate this MA plot. It looks quite weird for me. Is there any problem I should take care of? Thanks! MA plot

ddsHTSeq <- DESeqDataSetFromHTSeqCount(sampleTable=sampleTable, directory = directory, 
design=~condition)
#ddsHTSeq
colData(ddsHTSeq)$condition<-factor(colData(ddsHTSeq)$condition, levels=c('control','test'))

dds<-DESeq(ddsHTSeq)
res<-results(dds)
res<-res[order(res$padj),]
head(res)
plotMA(dds, ylim=c(-2,2), main='M', alpha=0.1)
rna-seq deseq2 maplot

Thanks for your notice. Sorry I'm quite new in this area. I'll avoid this next time. Thanks again!

0 answers

No answers yet.

Log in to answer this question.