how to compare the difference of read counts in a given region
1
0
Entering edit mode
4.5 years ago
BenHu • 0

I have 2 Chipseq, including IP and input samples.

for example, the the number of reads in the chr1:1-500bp is 1000 and 50 in IP and input samples, respectively.
I want to compare the statistic differences for that. Does anyone know how to work on that?

thanks in advance.

ChIP-Seq • 837 views
ADD COMMENT
0
Entering edit mode
4.5 years ago
seidel 11k

The simplest answer would be to use the Poisson distribution. Assuming your data is normalized for read depth, you have a background estimate for your window of interest (lambda = 50), and an observed count for that window in your IP (1000), so in R you could estimate this with:

ppois(100, lambda=50, lower.tail=FALSE)

However, this is only one window, and there maybe many other factors involved. The MACS paper is an easy read which resembles this approach (Zhang et al. 2008, Genome Biology). However, opinions differ on the best distribution to use, as well as other factors involved. See for example: Kuan et al., (2011). A Statistical Framework for the Analysis of ChIP-Seq Data.

ADD COMMENT
0
Entering edit mode

thanks a lot. could you send the titles for both papers. As I can not open the above links.

ADD REPLY
0
Entering edit mode

Sorry about that. I updated the references.

ADD REPLY

Login before adding your answer.

Traffic: 2644 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6