Rで学ぶBioconductorによるChIP-seq
Peter Humburg
Statistician, Macquarie University

確認したい問い:




qc_result <- ChIPQC("sample_info.csv", "hg19")
counts <- dba.count(qc_results, summits=250)
plotPrincomp(counts)
サンプル間の距離を計算する
distance <- dist(t(coverage))
デンドログラムを作成する
dendro <- hclust(distance)
デンドログラムを描画する
plot(dendro)
ピークのカバレッジデータからヒートマップを作成する
dba.plotHeatmap(peaks, maxSites = peak_count, correlations = FALSE)

Rで学ぶBioconductorによるChIP-seq