I want to have the intervals of the all the TF motifs that occur at the ChIP-seq bed file, and then intersect the motif coordinates with the SNP coordinates. Can MEME do it? Thank you for your response.
Snps At Tf Motifs
1 answer
If I understood correctly:
You have genomic intervals and want to identify common motifs between them. If so, then:
Use
bedtools getfastato extract sequences for each of the intervals in a BED file.bedtools getfasta -fi GENOME.fa -bed ChIP-seq.bed -fo ChIP-seq.faUse
MEMEto analyze your sequences (ChIP-seq.fa) for shared pattern (motif).
You have SNP bed and want to see in those SNPs overlap binding sites. If so, then:
all you need isbedtools intersectto screen for overlaps between SNPs and ChiP-Seq peaks.bedtools intersect -a ChIP-seq.bed -b SNP.bed
• 0 views
•
link
• 0 views
•
link
Ok, now I get it. You can still use MEME. Output will look like this example MEME output. Extract motif start position and add motif length to it.
• 0 views
•
link
I was wondering if there any software can do it automatically, thanks!
• 0 views
•
link
Log in to answer this question.