Hi!
I am trying to run DMRcate with a dataset downloaded from a paper. This dataset consist, instead of a set of probe names and their corresponding beta values, of a set of genomic positions and their corresponding beta values.
When I run cpg.annotate
I have to specify arraytype = "EPIC" or "450k"
. But these data come from none of them. So, is it possible to indicate just genomic positions to cog.annotate and get an annotation to find differentially methylated regions?
Thanks!
The problem is that I cannot create a GenomicRatioSet because I just have the matrix of Beta values, I couldn't obtain more information (such as
idat
files). My intention is to perform a differencial methylation analysis by using the beta values matrix that I downloaded from the provided material.Of course you can create a
GenomicRatioSet
. Why do you think you can't? Is there something in the help page that you don't understand? Here's a fake exampleYou would obviously use your real beta values, and construct an appropriate
GRanges
object using the 'corresponding genomic positions' that you say you have. Or if it's really Illumina data (as Tim Peters seems to think), then you can just do what he suggested.