ChIP-seq Motif Enrichment
0
0
Entering edit mode
3.4 years ago
Pappu ★ 2.1k

I am wondering what would be the idea way to carry out motif enrichment analysis from ChIP-seq data in order to see that the peaks called are significantly enriched for a TF motif compared to other regions in the genome.

ChIP-Seq • 2.0k views
ADD COMMENT
2
Entering edit mode

Without more context it is difficult to answer in details, but many people use HOMER for motif finding from ChIP-seq analysis.

ADD REPLY
0
Entering edit mode

In other words, how can one check if the TF is binding to the right places in the genome based on a known TF binding motif from TRANSFAC?

ADD REPLY
1
Entering edit mode

That is not how this goes. Not the motif is the ground truth but the binding, but I see your point. I would simply run Homer (findMotifs.pl) on your peaks, the canonical motif should come out as highly enriched. If you really want to know whether the peaks are "correct" in terms of specific, then you would need to perform ChIP with the same antibody on a similar celltype that does not express or has a knockout for that TF.

ADD REPLY
1
Entering edit mode

So without using HOMER, u could simply use bedtools getfasta to obtain the genomic sequence around your ChIP-seq peaks, grep your known motif, and see how many of your peaks are containing that motif.

ADD REPLY
0
Entering edit mode

Thanks. I was thinking about MEME-ChIP.

ADD REPLY
0
Entering edit mode

Also possible, people use either Homer or MEME, like they use bwa or bowtie2, they are similar.

ADD REPLY
0
Entering edit mode

I got that. How do you derive a p-value from that if say 30% sequences have that motif?

ADD REPLY
1
Entering edit mode

Depends. If the TF is known to bind promoters, then you could make a fisher exact test:

Number of promoters...

A- with ChIP peaks and TF motif        |   B-with ChIP peaks without TF motif
C- without ChIP peak but with motif    |   D-without ChIP peak nor motif

then in R:

fisher.test(matrix(c(A,B,C,D), nrow=2))
ADD REPLY

Login before adding your answer.

Traffic: 2555 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