RNAseq analysis with DEGseq and no replicates
0
0
Entering edit mode
6.1 years ago
rsafavi ▴ 60

Hi everyone, I preformed DEGseq analysis on my date which has no replicates, and I got the following MA plot.

I'm not sure if the graph makes sense or not? Most of the MA-graphs that I have seen so far merge around y =0. Also based on the DEGseq manual, the red points in the (MA-plot) are the genes identified as deferentially expressed.

Any help and clarification is really appriciated!

enter image description here

RNA-Seq noreplicates DEGseq • 2.6k views
ADD COMMENT
2
Entering edit mode

The y-axis of the MA is calculated as log2(sample1) - log2(sample2). Given that a) samples were properly normalized for sequencing depth and b) most genes did not change between the conditions (which you typically expect), the bulk of the data points should be along y=0. From this plot, it looks like trx-exp has been sequenced deeper than trx-control. I have no experience on DEGseq, is this a plot from the tool on the normalized counts or did you do it yourself, and on which counts (raw or normalized)?

ADD REPLY
0
Entering edit mode

Good to have you back

ADD REPLY
0
Entering edit mode

Thanks for your prompt answer. You are absolutely right the trx has been sequenced deeper that control (almost twice as deep). This plot is generated by the tool itself, and the input was raw counts(from featurecounts) as they said in their manual. I guess base on what you said the reason I'm not seeing the bulk of the data point along y = 0 is because the sequence depth is very different

ADD REPLY
0
Entering edit mode

You can explore the normalized data yourself, e.g. after TPM normalization in R:

## Normalize by gene length:
x <- counts.matrix / gene.length

## Normalize for depth:
tpm.mat <- t( t(x) * 1e6 / colSums(x) )

## Prepare MA Plot (assuming column and and 2 of tmp.mat are the normalized counts):
M = log2(tpm.mat[,1]) - log2(tpm.mat[,2])
A = 0.5*(log2(tpm.mat[,1]*tpm.mat[,2]))

## Plot:
plot(A, M, xlab="A", ylab="M"); abline(h=0, lty=2)
ADD REPLY
0
Entering edit mode

Thank, While I'm trying that, do you have any insight on why the red points which based on the manual are "differentially expressed" are on line y = 0?

ADD REPLY
0
Entering edit mode

Just to make you aware about further scientific decisions based on this data, DE analysis without replicates does not make sense in general.

ADD REPLY

Login before adding your answer.

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