Hi Dr. Rory Stark,
I used your "DiffBind" to analysis Chip-seq data by following codes. However, I could not get the table which used to plot heatmap (different binding sites? What is the threshold?). Could you give me some advice? Thanks very much.
Codes:
------------------------------------------------------------
setwd("/data/fmao/rajesh/hMeDIP/DiffBind")
pdf("draw.DiffBind.final.pdf")
hmedip <- dba(sampleSheet="config.csv")
plot(hmedip,main="using occupancy (peak caller score) data")
hmedip <- dba.count(hmedip)
hmedip1 <- dba.contrast(hmedip, categories=DBA_CONDITION,minMembers=2)
hmedip2 <- dba.analyze(hmedip1)
dba.plotHeatmap(hmedip2, contrast=1, correlations=FALSE,main="Contrast Heatmap")
------------------------------------------------------------