Hi Rory,
I wonder, if it is possible to extract counting data (after performing dba.count) from a resulting DBA object in csv format where consensus peak names are in the first column, peak positions are in the second/third/forth colums (chromosome, start, end) and normalized number of reads for each sample are in subsequent columns.
Regards
Konstantin
Thank you very much Rory, that what I need . Regarding peak names, I just was not sure if any peak names (e.g. Peak 1, Peak 2 and so for) were given in addition to coordinates.
Regards
Konstantin
Hi Rory,
Just to clarify, the counts extracted by dba.peakset function, aren't normalized to the library size, aren't they?
Regards
Konstantin
The values to be returned are controlled by the
score
parameter passed todba.count()
. The default values are TMM normalized, which takes library size into account. (You can tell they're normalized because they are not integers).You can change the score without having to re-count the reads by calling
dba.count()
withpeaks=NULL
andscore=DBA_SCORE_READS
(or any of the other scores detailed on thedba.count()
man page).