I found that the q value in the file of methylKit output DMC is the same value:0.0232810229810332, is this situation normal? How should I solve this problem?
file.list = list("N0_CpG.txt","N24_CpG.txt","M0_CpG.txt","M24_CpG.txt")
myobj=methRead(file.list,
assembly="mm10",
treatment=c(0,1,1,1),
context="CpG",
filtered.myobj=filterByCoverage(myobj,lo.count=10,lo.perc=NULL,
hi.count=NULL,hi.perc=99.9)
normalized.myobj <- normalizeCoverage(filtered.myobj)
meth=unite(normalized.myobj, destrand=FALSE)
meth1=reorganize(meth,sample.ids = c("N24","N0"),treatment=c(1,0))
myDiff1=calculateDiffMeth(meth1)
write.table(myDiff1,"N24_N0_DMC.txt",quote = F,sep = '\t',row.names = FALSE)
myDiff1.hyper=getMethylDiff(myDiff1,difference=25,qvalue=0.05,type="hyper")
myDiff1.hypo=getMethylDiff(myDiff1,difference=25,qvalue=0.05,type="hypo")
myDiff1.all=getMethylDiff(myDiff1,difference=25,qvalue=0.05)
write.table(myDiff1.all,"N24_N0_DMC_all.txt",quote = F,sep = '\t',row.names = FALSE)
write.table(myDiff1.hyper,"N24_N0_DMC_hyperl.txt",quote = F,sep = '\t',row.names = FALSE)
write.table(myDiff1.hypo,"N24_N0_DMC_hypo.txt",quote = F,sep = '\t',row.names = FALSE)
Looking forward to your reply, thank you!