How does diffbind extract the original coordinates of each difference peak
1
0
Entering edit mode
2.5 years ago
441559287 • 0

After using dba. analyze() to calculate the difference, use dba. report() to extract the difference peak, but the difference peak coordinates have been merged. How to output the real peak coordinates corresponding to each difference peak in different sample species?

> library(DiffBind)

> dbObj_S3_S2 <-dba(sampleSheet="D5_D3_Linux.csv")
> dbObj_S3_S2 <- dba.count(dbObj_S3_S2 , bUseSummarizeOverlaps=TRUE)
> dbObj_S3_S2 <- dba.normalize(dbObj_S3_S2)
> dbObj_S3_S2 <- dba.contrast(dbObj_S3_S2,reorderMeta=list(Condition="S2"),minMembers = 2)
> dbObj_S3_S2 <- dba.analyze(dbObj_S3_S2, method=DBA_ALL_METHODS)
> comp1.deseq2_S3_S2 <- dba.report(dbObj_S3_S2, method=DBA_DESEQ2,contrast=1,th=1)
DiffBind • 694 views
ADD COMMENT
0
Entering edit mode
2.2 years ago
Rory Stark ★ 2.0k

I'm not sure what you mean by "real" peak coordinates.

Do you mean the overlapping peak calls in each sample that contributed to the consensus peak? In that case there can be multiple "real" peak coordinates for each consensus peak. You can identify these by overlapping the consensus peaks returned by dba.report() with each individual peakset. The easiest way to do that is to load the individual peaksets as GRanges objects (as is the returned report).

ADD COMMENT

Login before adding your answer.

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