Hi Rory,
From the latest update, I can retrieve the data from dba.peakset() ,after doing:
data <- dba.peakset(dbObj, bRetrieve=TRUE)
Then use the following code to calculate the correlation of each sample and draw the heatmap:
> result <- cor(data) ## use pearson method
> heatmap.2(result )
However, the heatmap obtained is not consistent with that drawn by using the default function dba.plotHeatmap(dbObj), and the clustering results are also different.Does it need to set other parameters.
Thank you very much!