Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Advanced coverage predictor

    Hi all,

    Is there some kind of a Poisson calculator out there that will predict not only mean coverage but coverage at various percents? For example, given a human genome, what mean coverage do I need to get 95% of my bases covered at greater than 30X?

    Thanks!!

    Seth

  • #2
    Use ppois in R

    If I'm not mistaken, what you're asking is essentially: if I assume a Poisson distribution, what mean rate do I need to have for at least 95% of the area under my curve above 29?

    The answer to that can be found using a simple lapply or for loop in R. Here's what the for loop would look like:

    Code:
    for(i in 30:75) {
     # ppois returns the density under the curve, lower.tail=F
     # specifies that you want to return the area under the curve
     # at or above 30
      cat(i,ppois(29,i,lower.tail=F),"\n")
    }
    This prints out the mean coverage, and the percentage of bases with at least 30X coverage. The answer to your question appears to be that you should aim for mean coverage of at least 40X.

    The code isn't that great, but it should give you an idea of how to answer the question.

    Comment


    • #3
      I made this. Does it look right?



      It suggests that to get >95% 30-fold coverage I need an average coverage of 41...can that be right??
      Last edited by scrosby; 01-18-2014, 12:54 PM.

      Comment


      • #4
        Yup! I think I got that you need at least 40X average coverage.

        I haven't done much WGS, mainly exome sequencing, but I'd also bear in mind that due to GC content, the genome you're sequencing, the instrument you're using, and other factors, you may not see 95% of the genome with at least 30X coverage.

        Comment


        • #5
          scrosby: Fixed it for you using imgur.com. Sent you a PM.

          Comment

          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...
            Today, 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, Today, 08:18 AM
          0 responses
          8 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, Today, 08:04 AM
          0 responses
          10 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 06-03-2024, 06:55 AM
          0 responses
          13 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 05-30-2024, 03:16 PM
          0 responses
          27 views
          0 likes
          Last Post seqadmin  
          Working...
          X