Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • too many de genes

    Hi

    I have processed my paired-end rna-seq data (2 conditions x 3 replicates) based on the following pipeline:
    mapping with STAR>rsem-calculate-expression>de testing with ebseq

    However, at the normally accepted filters (log2FC>2 AND adjustedp<0.05), I am getting close to 8000 differentially expressed genes.
    Changing the filter values (for instance, reducing adjustedp to 0.001) still results in ~7000 de genes.

    This is a large list, and I do not expect my samples to have so many differences.

    Can anyone suggest a resolution to the issue?

    Thanks.

    Best
    M

  • #2
    I would say this is caused by the low power of statistics on n=3. You basically get a lot of DE genes by chance. P-values tend to be extremely low in these kind of stats so you can consider having higher thresholds. You could also try to have a higher n if possible, change the stats (for example try a glm with multiple variables, if you have others e.g. sex, age, ...) or use GO terms to have groups of genes to compare. BTW, you are not alone, most people face this problem with RNA-seq

    Comment


    • #3
      Originally posted by Birdman View Post
      you are not alone, most people face this problem with RNA-seq
      Having run lots and lots of RNA-Seq experiments I would counter that 'most' people face this problem. I have certainly seen experiments with upwards of a thousand DE (on interfering with splicing machinery), but I've also seen very small results sets from very specific siRNA KD experiments. This high level of DE is not usual in my experience.

      But you can't draw any conclusions about too few replicates, when to be honest, at least some replicates have actually been run.

      I think the real question that needs asking here was 'What was the experiment you ran?' and 'how close are the replicates to each other?'.
      Last edited by Bukowski; 03-26-2014, 12:39 PM.

      Comment


      • #4
        Hi

        Thanks for the inputs.
        My replicates look similar (PCA, MA plots) and the mapping quality is also similar in each of them (70-80%).
        I agree that there must be many false positives in the data, and this begets the question of how to proceed from here?
        I do have some specific questions in mind, like impact on cell cycle, specific tfs etc. but wouldn't pre-selection by supplying GO terms bias the output.
        Also, there might be several lowly-expressed transcripts (belonging especially to, say, miRNA regulators) that might be filtered out if I increase the thresholds.
        Surfing around, it seems wgcna might be a viable option.
        Any suggestions.

        Thanks again.
        Best
        M

        Comment


        • #5
          Originally posted by mtiwaridros View Post
          Also, there might be several lowly-expressed transcripts (belonging especially to, say, miRNA regulators) that might be filtered out if I increase the thresholds.
          Surfing around, it seems wgcna might be a viable option.
          It's true that in some experiments I have a lot of stuff expressed at very low levels that has significant p-values and reasonable foldchanges, but I tend to apply some kind of minimum FPKM filter in both conditions - which generally cuts a swathe of data out, as I just don't trust data hovering just above background. I've heard of, but not used WGCNA, so I'm afraid I can't advise on that.

          Comment


          • #6
            Originally posted by Bukowski View Post
            It's true that in some experiments I have a lot of stuff expressed at very low levels that has significant p-values and reasonable foldchanges, but I tend to apply some kind of minimum FPKM filter in both conditions - which generally cuts a swathe of data out, as I just don't trust data hovering just above background. I've heard of, but not used WGCNA, so I'm afraid I can't advise on that.
            Hello,

            Loosely related to this topic... If after differential expression analysis there are too many genes differentially expressed at FDR < x, one could rank them by logFC. However, this tends to select genes towards the low expressed range. On the other hand, ranking by FDR will typically skew the selection towards genes highly expressed even if they have small logFC.

            An alternative I found quite nice is to apply an "intensity dependent" filter where genes are ranked according to how extreme they are in terms of logFC relative to genes with similar expression level. On an MAplot it means choosing genes towards to periphery of the cloud. Interesting genes would be those with FDR < x and |z-score| > y (say z-score > 2, where the z-score is the measure of how far a gene is from the cloud).

            This helps in filtering genes when lots of them are DE. Then the reason why one gets 1000s of genes DE depends on the experimental design, of course.

            I wrote a couple of R functions (attached) to implement the idea. Here's an example usage:

            Code:
            source('intensityFilter.R')
            
            ## Simulate some data
            set.seed(1234)
            
            ## Expression level
            logCPM<- sort(rnorm(n= 10000, mean= 5, sd= 1))
            
            ## Log fold change
            set.seed(12345)
            logFC<- sapply(length(logCPM):1, function(i) rnorm(n= 1, mean= 0, sd= i^(1/1.5)))
            
            smoothScatter(x= logCPM, y= logFC, nrpoints= 1000)
            
            ## z-score
            z<- localZ(logCPM, logFC, nbins= 20)
            
            ## Highlight genes on the periphery of the cloud
            points(logCPM, logFC, col= ifelse(abs(z) > 1.5, 'red', NA), pch= '.', cex= 0.5)
            (NB: The idea is not mine, I got it in part from this post by simonandrews http://seqanswers.com/forums/showpos...8&postcount=34)

            Any comments much appreciated!

            Dario
            Attached Files

            Comment

            Latest Articles

            Collapse

            • seqadmin
              Advancing Precision Medicine for Rare Diseases in Children
              by seqadmin




              Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...
              12-16-2024, 07:57 AM
            • seqadmin
              Recent Advances in Sequencing Technologies
              by seqadmin



              Innovations in next-generation sequencing technologies and techniques are driving more precise and comprehensive exploration of complex biological systems. Current advancements include improved accessibility for long-read sequencing and significant progress in single-cell and 3D genomics. This article explores some of the most impactful developments in the field over the past year.

              Long-Read Sequencing
              Long-read sequencing has seen remarkable advancements,...
              12-02-2024, 01:49 PM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, 12-17-2024, 10:28 AM
            0 responses
            33 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-13-2024, 08:24 AM
            0 responses
            48 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-12-2024, 07:41 AM
            0 responses
            34 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-11-2024, 07:45 AM
            0 responses
            46 views
            0 likes
            Last Post seqadmin  
            Working...
            X