Small p-values are expected when you do many tests. One way to think about p-value correction is so you are not fooled by these small p-values which are expected under the null. Under the null, you would expect 1 p-value < 1/10,000 when you do 10,000 tests, 2 p-values less than 2/10,000, etc. If you run p-values like these (i.e. uniformly distributed) through an adjustment like the BH method, you will find there will generally be no set for which the FDR < x < 1. This is multiple test correction doing it's job. See the vignette for more description.
Also, as fanli points out, that is DESeq code, not DESeq2.
Seqanswers Leaderboard Ad
Collapse
Announcement
Collapse
No announcement yet.
X
-
Your truncated dataset appears to (correctly) have no significant hits. I'd go through the steps in the vignette and take a look at the dispersion and MA plots. Relatedly, it looks like you're using DESeq - would recommend using DESeq2.
Leave a comment:
-
DESeq2 with replicates no sig padj
So I am running data analysis on count data using DESeq2. I have three biological replicates for each condition. My results show significant p values but no padj values other than 1, even with very low pval. How can I troubleshoot? Truncated data set attached.
setwd("C:/Users/Melissa Randel/Desktop")
library( "DESeq" )
theta = 0.3
Fname_pos = "trunc_DESeq_out"
CountTable3L_pos = read.table("counts_table.txt")
Design3L_pos = data.frame( row.names = colnames( CountTable3L_pos ), condition = c( "untreated", "untreated", "untreated", "treated", "treated", "treated" ), libType = c( "single-end", "single-end", "single-end", "single-end", "single-end","single-end" ) )
singleSamples_pos = Design3L_pos$libType == "single-end"
countTable_pos = CountTable3L_pos[ , singleSamples_pos]
condition_pos = Design3L_pos$condition[ singleSamples_pos ]
full_cds_pos = newCountDataSet( countTable_pos, condition_pos )
rs_pos = rowSums ( counts ( full_cds_pos ))
use = (rs_pos > quantile(rs_pos, probs=theta))
table(use)
cds_pos = full_cds_pos[use,]
cds_pos = estimateSizeFactors( cds_pos )
cds_pos = estimateDispersions( cds_pos )
res_pos = nbinomTest( cds_pos, "untreated", "treated" )
write.table(res_pos, file = Fname_pos, append = FALSE, quote = FALSE, sep = "\t", eol = "\n", na = "NA", dec = ".", row.names = TRUE, col.names = TRUE, qmethod = c("escape", "double"), fileEncoding = "")
min(res_pos$padj)Attached FilesTags: None
Latest Articles
Collapse
-
by seqadmin
This year’s Advances in Genome Biology and Technology (AGBT) General Meeting commemorated the 25th anniversary of the event at its original venue on Marco Island, Florida. While this year’s event didn’t include high-profile musical performances, the industry announcements and cutting-edge research still drew the attention of leading scientists.
The Headliner
The biggest announcement was Roche stepping back into the sequencing platform market. In the years since...-
Channel: Articles
03-03-2025, 01:39 PM -
-
by seqadmin
The human gut contains trillions of microorganisms that impact digestion, immune functions, and overall health1. Despite major breakthroughs, we’re only beginning to understand the full extent of the microbiome’s influence on health and disease. Advances in next-generation sequencing and spatial biology have opened new windows into this complex environment, yet many questions remain. This article highlights two recent studies exploring how diet influences microbial...-
Channel: Articles
02-24-2025, 06:31 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, Today, 07:27 AM
|
0 responses
10 views
0 likes
|
Last Post
by seqadmin
Today, 07:27 AM
|
||
Started by seqadmin, Yesterday, 12:50 PM
|
0 responses
14 views
0 likes
|
Last Post
by seqadmin
Yesterday, 12:50 PM
|
||
Started by seqadmin, 03-03-2025, 01:15 PM
|
0 responses
185 views
0 likes
|
Last Post
by seqadmin
03-03-2025, 01:15 PM
|
||
Started by seqadmin, 02-28-2025, 12:58 PM
|
0 responses
280 views
0 likes
|
Last Post
by seqadmin
02-28-2025, 12:58 PM
|
Leave a comment: