Hello,
I am using DiffBind for my MeRIPSeq (mRNA methylation) analysis.
I have been using it to extract a consensus list of peaks. I am running:
> diffConsensus = dba.peakset(diff,consensus = DBA_CONDITION,minOverlap = 0.5)
> diffConsensus = dba(diffConsensus,diffConsensus$masks$Consensus)
> write.table(consensusTable,"DiffConsensus.txt",sep="\t",row.names = FALSE)
And i obtain this table:
Peak_ID | CHR | START | END | BioCond1 | BioCond2 | BioCond3 |
Peak_1 | chr1 | 4776296 | 4776838 | -1 | 0.000495571 | 0.002827327 |
Peak_2 | chr1 | 4783990 | 4784141 | -1 | -1 | -1 |
Peak_3 | chr1 | 4832291 | 4832442 | -1 | 0.000211353 | 6.57E-05 |
Peak_4 | chr1 | 4844941 | 4845242 | 0.000499804 | 0.000640289 | 0.000727162 |
Peak_5 | chr1 | 4845691 | 4846042 | 0.0002085 | 0.000142631 | 0.000123008 |
What are the numbers in column 5,6 and 7 ?
I have gone through the vignettes and tutorials and I cannot find an explanation about the number calculated during the operation.
Thanks