Hi,
I am trying to combine raw (.idat) and GEO (intensity matrix) Illumina 450K data sets using minfi.
library(minfi)
geo.data <- getGenomicRatioSetFromGEO(GSE="")
targets < read.450k.sheet("my.data.csv")
my.data <- read.450k.exp(base="data", targets=targets)
my.data.raw <- preprocessRaw(my.data)
my.data.RG <- ratioConvert(my.data.raw, what = "both")
my.data.mset <- mapToGenome(my.data.RG)
At this point, is there a way I can combine the two GenomicRatioSets to form a single data set for downstream analysis? Sorry if this is a basic question, but I havn't been able to figure it out.
Thank you
Matt
Hi,
Do you have any idea about "TableControl data GSnormalisation HM450" and "TableControl annotations HM450" in illumina HM 450 k data?
I thought they are control probe tables (~700-800 probes?). I am not 100% sure, but I believe those are integrated in the
minfi
package. So you shouldn't worry about these files when you are usingminfi
. Ask Kasper the author to double check. I am not 100% certain.