Unknown annotation in the RGChannelSetExtended object
2
0
Entering edit mode
Frocha ▴ 20
@frocha-12039
Last seen 6.0 years ago

I use read.metharray.exp() in the minfi package to read .IDAT files from Illumina MethylationEPIC array. I got an unknown annotation:

> rgSet<-read.metharray.exp(base="IDAT/",extended=TRUE)
> rgSet
RGChannelSetExtended (storageMode: lockedEnvironment)
assayData: 1051943 features, 8 samples
  element names: Green, GreenSD, NBeads, Red, RedSD
An object of class 'AnnotatedDataFrame': none
Annotation
  array: Unknown
  annotation: Unknown

Why the annotation is unknown? Thanks!
 

minfi idat annotation EPIC • 2.0k views
ADD COMMENT
0
Entering edit mode
xue.zhang • 0
@xuezhang-12601
Last seen 7.1 years ago

having the same problem with EPIC. tried with minfi 450k sample data, no problem.

ADD COMMENT
0
Entering edit mode
ADD COMMENT
0
Entering edit mode

Looks like 'RGChannelSetExtendeds' is based on the ExpressionSet class, and so using an accessor rather than direct slot access is much preferred.

> eset = ExpressionSet()
> annotation(eset)
character(0)
> annotation(eset) = c("foo", "bar")
> annotation(eset)
[1] "foo" "bar"

 

ADD REPLY

Login before adding your answer.

Traffic: 871 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6