Hi all,
While working on a ChIP-Seq data set consisting out of 16 samples I want to see the differences in peak height. To achieve this I first need a merged peak location. To achieve this I was thinking of a tool which could merge all 16 of my peak files at once. E.G. bedtools merge / multiinter. Only thing is that I have the feeling this is not exactly what I want and it becomes difficult to see if bedtools does a good job here.
I want to achieve a peak location in the following way:
A: start = 25 : end = 50
B: start = 30 : end = 65
C: start = 20 : end = 45
MERGED: start = 20 : end = 65
Which tool/ mode from bedtools can achieve this result. Any hints are very much appreciated. Thanks!
Sander
Hey,
Are you talking about getting a reference location for comparisons? because peak merging is a different concept, in which you would assemble all the locations and generate a wide peak (or depending on the operations you use e.g.,
bedtools merge
).Your question is not very clear to me.
Uuh I am talking about the latter one you describe. So I have 16 peak files where I basically want to know which peaks overlap. And if they overlap I want the minimum start and the maximum end (binning approach). So that I can build a gtf file for counting all my reads laying in that region per sample. After generating the count table per sample I can apply something like edgeR to find differences in my bins. Basically I want to do differential peak binding/calling.