Why less DE for non replicates
1
0
Entering edit mode
7.4 years ago

Hi,

I have been working with human and mouse organisms with non replicates, I am getting less number of DE genes using different method DESeq. Below is the total read count for two samples.

human: sample1: 22905420 sample2: 23715800 total genes: 25,370 DE genes: 97

I am trying to understand why did i get less DE genes? Could someone help me?

Thanks.

RNA-Seq • 1.5k views
ADD COMMENT
5
Entering edit mode

As always without any replicates it would be hard to draw conclusions.. IMO I would not trust the results..

ADD REPLY
3
Entering edit mode

We need to post this in a banner at the top of the page.

ADD REPLY
4
Entering edit mode

Or just a helpful pop-up when making a post containing some keywords: https://cdn.meme.am/cache/instances/folder314/500x/73204314.jpg

ADD REPLY
0
Entering edit mode

Please be more informative with regard to the experimental setup and the commands you used, don't make us guess.

ADD REPLY
0
Entering edit mode

Sorry, I have used following commands:

library(DESeq)

data = read.table("DEinput.txt", header=T, row.names=1, com='') col_ordering = c(1,2) rnaseqMatrix = data[,col_ordering] rnaseqMatrix = round(rnaseqMatrix) rnaseqMatrix = rnaseqMatrix[rowSums(rnaseqMatrix)>=2,] conditions = factor(c(rep("s1", 1), rep("s2", 1)))

exp_study = newCountDataSet(rnaseqMatrix, conditions) exp_study = estimateSizeFactors(exp_study) exp_study = estimateDispersions(exp_study, method="blind", sharingMode="fit-only")

res = nbinomTest(exp_study, "s1", "s2")

ADD REPLY
0
Entering edit mode

You don't have replicates. Hence, test is limited in degrees of freedom to estimate variance and thereby less power to detect DE genes.

ADD REPLY
1
Entering edit mode
7.4 years ago

Fewer replicates means less power.

ADD COMMENT

Login before adding your answer.

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