Hi folks,
I am new to ChIP-seq analysis hence this may be a basic question. I want to use DiffBind to get peak summits, but after running dba.count
with my own peaks, I find the number of peaks has decreased. Is this normal? How did this happen?
library(tidyverse)
library(DiffBind)
tf <- dba(sampleSheet=tf_samples)
peaks=read.table('final_merge.bed')
colnames(peaks)=c("Chr","Start","End")
dim(peaks)
[1] 1271 3
tf <- dba.count(tf , peaks = peaks,bUseSummarizeOverlaps=TRUE,
score=DBA_SCORE_READS)
dim(tf$peaks[[1]])
[1] 1261 8
sessionInfo( )