This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Cross-Correlation On Chip-Seq Like Data?

Has anyone looked into the similarity of two samples of chip-seq like data using cross-correlation or auto-correlation? Basically I wish to get some sort of metric that describes how similar two wiggle files are on a genome-wide scale. Or inversely how much variance in one sample can be described by looking at the pattern of distribution in the other. If you have, what software or library did you use or alternatively what different approach have you used?

chip-seq statistics wiggle

The way I understand it is that cross-correlation gets you the lag between signals; autocorrelation gets the periodicity within a single signal. Do you mean plain 'ol correlation, like on a bp-by-bp or window-by-window basis?

Good points. I was hoping that cross-correlation would not require there to be a periodicity and the signal itself would be enough for a measurement of similarity (I am still not clear on this). Regular correlation/regression might work I guess but I am concerned about the quantity of data for this approach. Perhaps a 100bp window per chromosome is the only way and avoid comparing two null or two background signals as per Jeremy's point below.

2 answers

I'm kind of interested in this topic. I'm developer of a package for digital signal processing of quantitative genomic data (such as ChIP-seq). Cross-correlation is something I was implementing too, although I had some issues with the border effect, and also I was not sure xcorr is a proper measure of similarity for two ChIPs. In addition, subtracting one chip from the other (after energy normalization) may have the same effect. d

Seems like every time someone tries to use correlation to measure something like this the 0-0 effect throws things off. I prefer just calling the peaks and counting overlaps (by findOverlaps in R IRanges or using BEDTools).

Log in to answer this question.