Closed QianhuiWan closed 5 years ago
Hi, I have updated missMethyl to now use the newest Illumina annotation (IlluminaHumanMethylationEPICanno.ilm10b4.hg19) by default. You can either revert to using the Bioconductor release version of missMethyl, which still uses the older annotation, or you can pass the older annotation to the gometh function directly:
# load older version of the Illumina annotation
library(IlluminaHumanMethylation450kanno.ilmn12.hg19)
# get older version of the annotation
ann <- getAnnotation(IlluminaHumanMethylation450kanno.ilmn12.hg19)
# pass old annotation to gometh using the "anno" parameter.
gst <- gometh(sig.cpg = sigcpgs, all.cpg = allcpgs, collection = "GO", prior.prob = TRUE, anno = ann)
Thank you so much!
Hi Oshlack, I updated
missMethyl
package last week, and when I rerun my analysis I found my results fromgometh
andgsameth
all changed. Do you know why this happen? Do I need to change back to the old version? Thank you so much. My codes are as follows: