Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • turnersd
    Senior Member
    • May 2011
    • 115

    What does genome-wide coverage look like for good MeDIP/ChIP enrichment?

    I have a MeDIP-seq experiment with inputs and enriched samples for several replicates. I'm not sure if we have good enrichment, so I want to look at the coverage genome-wide in the MeDIP-enriched samples versus the inputs. Looking at the alignments in IGV isn't helpful at the genome-wide scale, so I want to look at a histogram of the number of bases across the genome with coverage 1x, 2x, 3x, ... 100x .. etc. I got this information by using bedtools genomeCoverageBed.

    I would imagine such a plot would look like this, where enriched (MeDIP) samples have many regions of the genome with zero coverage, but more reads with very high coverage.



    When I actually look at this data, here's what I get (log scale on both axes):



    Zooming into the first part of the graph between 1x-100x shows a very slight difference in the distribution. Most of the "lower" curves are inputs, while most of the "upper" curves are enriched samples.



    My question is: I'm not sure if I have good enrichment or not - what should this look like for an experiment with good enrichment?

    I would have expected a much more noticeable difference between the genome-wide coverage of MeDIP'd samples and inputs. Has anyone ever produced this kind of plot for MeDIP-seq or ChIP-seq data?

    If you have aligned data, these plots can be produced easily:

    Code:
    # Data prep with Bedtools
    genomeCoverageBed -ibam sample1.bam -g hg19.fa.fai | grep genome > sample1.coverage.txt
    genomeCoverageBed -ibam sample2.bam -g hg19.fa.fai | grep genome > sample2.coverage.txt
    # ...etc
    
    # Visualization with R:
    # Read in all "*coverage.txt" files into a list
    # Collapse them into a data.frame
    bigdataframe <- do.call(rbind,  lapply(datalist, data.frame, stringsAsFactors=T))
    
    # plot
    library(ggplot2)
    qplot(V2,V5, colour=sample)
  • frozenlyse
    Senior Member
    • Sep 2008
    • 135

    #2
    You could try enrichmentPlot in Repitools - an example using MBDCap-seq (similar to MeDIP-seq) is in section 3 of the manual.

    Comment

    • mudshark
      Senior Member
      • Jan 2009
      • 138

      #3
      a good chipseq expt looks like this using your code

      Comment

      • turnersd
        Senior Member
        • May 2011
        • 115

        #4
        @mudshark - thanks very much! it looks a bit different than my own. is this public data or is this your own? what factor were you ChIP'ing?

        Thanks.

        Comment

        • mudshark
          Senior Member
          • Jan 2009
          • 138

          #5
          its a transcription factor (unpublished).

          i was thinking.. did you filter multiple hit reads? if not, these would explain the high coverages in input and MeDiP sample kind of obscuring the 'true' enrichment.

          Comment

          Latest Articles

          Collapse

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by SEQadmin2, 06-09-2026, 11:58 AM
          0 responses
          24 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-05-2026, 10:09 AM
          0 responses
          29 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-04-2026, 08:59 AM
          0 responses
          39 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-02-2026, 12:03 PM
          0 responses
          61 views
          0 reactions
          Last Post SEQadmin2  
          Working...