Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Too high adjusted P-values analysing RNA-seq count data with limma

    Hello!

    I'm trying to analyse an RNA-seq count data matrix with limma. From an input table with about 15000 entries, limma gets 1600 differentially expressed genes. That is OK, but these genes have an adjusted P-value about ten times higher than the required 0.05 threshold. Am I doing something wrong? Should I analyse RNA-seq data with limma in a different way? I'm using the following code:


    raw_filter is the count data data frame
    replicates <- 3


    groups <- c(rep("A", replicates), rep("B", replicates))
    DGE_List <- DGEList(counts=raw_filter, group=groups)
    DGE_List <- calcNormFactors(DGE_List)
    normalized_counts <- as.matrix(DGE_List)
    design <- model.matrix(~0+ groups)
    log2_cpm <- voom(DGE_List, design, plot=TRUE)
    fit <- lmFit(log2_cpm, design)
    cont_matrix <- makeContrasts(c("groupsB-groupsA"), levels=design)
    fit2 <- contrasts.fit(fit, cont_matrix)
    fit2 <- eBayes(fit2)
    all_limma <- decideTests(fit2, p.value = 0.05, lfc = lfc)
    all_limma <- topTable(fit2, adjust.method="BH", number=nrow(fit2))
    all_limma <- all_limma[order(rownames(all_limma)),]
    expres_diff <- subset(all_limma, all_limma$P.Value < 0.05)


    Thank you in advance for your help
    Last edited by IsBeth; 02-19-2016, 11:13 AM.

Latest Articles

Collapse

  • seqadmin
    Best Practices for Single-Cell Sequencing Analysis
    by seqadmin



    While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
    06-06-2024, 07:15 AM
  • seqadmin
    Latest Developments in Precision Medicine
    by seqadmin



    Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

    Somatic Genomics
    “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
    05-24-2024, 01:16 PM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Yesterday, 06:58 AM
0 responses
13 views
0 likes
Last Post seqadmin  
Started by seqadmin, 06-06-2024, 08:18 AM
0 responses
20 views
0 likes
Last Post seqadmin  
Started by seqadmin, 06-06-2024, 08:04 AM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 06-03-2024, 06:55 AM
0 responses
13 views
0 likes
Last Post seqadmin  
Working...
X