ChIP-seq with Bioconductor in R
Peter Humburg
Statistician, Macquarie University
Questions we would like to answer:
qc_result <- ChIPQC("sample_info.csv", "hg19")
counts <- dba.count(qc_results, summits=250)
plotPrincomp(counts)
Compute distance between samples
distance <- dist(t(coverage))
Create dendogram
dendro <- hclust(distance)
Plot dendrogram
plot(dendro)
Create heatmap from coverage data for peaks
dba.plotHeatmap(peaks, maxSites = peak_count, correlations = FALSE)
ChIP-seq with Bioconductor in R