Hi everyone, I’m running a ChIP-seq analysis and visualizing the data. I have two biological replicates in two conditions, WT and HTT. I merged the BAM files with samtools (samtools merge wt1.bam wt2.bam & samtools merge htt1.bam htt2.bam). Then I ran bamCoverage using RPKM for normalization. After that, I built the count matrix using a BED file with my regions of interest and, finally, generated this plotProfile.
The issue is that each condition starts at a very different baseline on the y-axis (WT above 8 and HTT above 7), whereas in publications I see the signal starts close to y = 0 and all conditions share the same starting value—unlike my case, where one is higher than the other. What could be causing this, and how is it recommended to fix it?
PS: I have the input ChIP-seq files, but I’m not sure whether I should do a bamCompare instead of a bamCoverage—e.g., bamCompare WT WT-input—and then merge the biological replicates afterward. I don’t know if that makes sense, or if the input isn’t necessary for visualization.
Thank you very much!