Entering edit mode
20 months ago
soda
▴
50
Hi,
I want to get raw reads and normalized read count from Diffbind. This is my code:
dbObj=dba(sampleSheet = samplesheet)
dbObj=dba.count(dbObj, bUseSummarizeOverlaps=T,bRemoveDuplicates = T)
datac=dba.normalize(datac,normalize=DBA_NORM_LIB)
Then I want to get normalized read count dataframe from this. I try to read this quesion and official manuals.So I write following code:
rawread=dba.peakset(datac,bRetrieve = T,DataType = DBA_DATA_FRAME,writeFile = 'rawread.csv',peak.format ='csv' )
I get a dataframe:
So is it right? Or how can I get raw read counts and normalized read counts?
Thank you. I really appreciate it.