Can we merge/ combine biological replicates from same sample together in ChIP-seq / ATAC-seq data when we want to do peak calling (or like RNA seq we should process each replicate separately)? because I am seeing in some papers, the data were merged for peak calling and some where else processed separately!
Thanks in advance!
I'd perform peak calling on individual samples and then use
bedtools intersect
ormergePeaks
fromHomer
package to assess the overlap among replicates.I have used that approach before for ATACseq. So first call peaks for all bam files at once, and then quantify how many reads were mapped to the peak regions for each sample (bam file) for statistical analysis in edgeR.
" and then quantify how many reads were mapped to the peak regions for each sample (bam file)" how did you take out the count? by using multibamsummary? or