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
    Current Approaches to Protein Sequencing
    by seqadmin


    Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
    04-04-2024, 04:25 PM
  • seqadmin
    Strategies for Sequencing Challenging Samples
    by seqadmin


    Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
    03-22-2024, 06:39 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 04-11-2024, 12:08 PM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 10:19 PM
0 responses
22 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 09:21 AM
0 responses
16 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-04-2024, 09:00 AM
0 responses
47 views
0 likes
Last Post seqadmin  
Working...
X