MACS2 peak calling and drug treatment
1
0
Entering edit mode
8 months ago
qudrat.nii ▴ 10

Hello, I have called peak for a transcription factor (say TF1) using MACS2 on a cell line with DMSO treated with two replicates and the same cell line was treated with a drug that is supposed to degrade the TF1. In DMSO treated number of peak called was 15500 and in drug treated number of peaks reduced to 5000. My question is how to find the identity lost peaks ?

MACS2 • 578 views
ADD COMMENT
1
Entering edit mode

Are you saying there are two replicates of DMSO treatment, and two replicates of Drug treatment? Or two samples, one with DMSO, the other with drug? If the former, you'll have to incorporate a strategy of defining a reference peak set from the replicates.

ADD REPLY
1
Entering edit mode
8 months ago
seidel 11k

There are many ways to do this depending on your preferred environment. The GenomicRanges library in R is a good way to interact with this kind of data. However, if you have a bed file of DMSO peaks, and a bed file of drug treatment peaks, and you want to find DMSO peaks NOT overlapped by a drug treatment peak, you could use bedtools intersect:

bedtools intersect -v -a DMSO.bed -b drug.bed

If you have replicates of either treatment, you'll need a strategy for reducing them to a reference set (i.e. keeping only peaks observed in both replicates, and then applying the strategy above, etc.).

ADD COMMENT
0
Entering edit mode

Thank you very much

ADD REPLY

Login before adding your answer.

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