-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
markers removed from EPIC DMAP files causing fewer CpGs in idat files and minfi errors #107
Comments
Thanks, we are aware and an updated annotation package has already been submitted to Bioconductor (and may be online as I write). This issue is technically not caused by the manifest or annotation package (this is not easy to know). It should be fixed in minfi devel (1.21.6 or greater), which is available from Bioconductor devel or you can wait a few days since the next release is tomorrow. |
@kasperdanielhansen Awesome! Thanks! |
The default right now is to use the "previous" annotation package b2. If you want to switch to the latest, you need to do it manually. I might release a fix in a few days for this. |
Thanks @kasperdanielhansen ! Is there any difference in the b2 manifest and the b3, other than the ~900 probes that are removed from b3? So, for minfi, is there any reason to annotate with b3 instead of b2? Thanks! |
We just got the new version of R (3.4.0) the new version of Bioconductor and a new version of minfi (1.22.0), so I was able to test my above question about combining EPIC data from old and new arrays (with and without the ~900 probes). It looks like this fails with default settings but works if you use rgset <- read.metharray.exp("/path/to/ScanData/multipleChips", recursive = T)
##Error in read.metharray(basenames = commonFiles, extended = extended, :
## [read.metharray] Trying to parse IDAT files with different array size but seemingly all of the same type.
## You can force this by 'force=TRUE', see the man page ?read.metharray
rgset <- read.metharray.exp("/path/to/ScanData/multipleChips", recursive = T, force=TRUE)
rgset
##class: RGChannelSet
##dim: 1051943 7
##metadata(0):
##assays(2): Green Red
##rownames(1051943): 1600101 1600111 ... 99810990 99810992
##rowData names(0):
##colnames(7): 200930750040_R07C01 200930750040_R08C01 ...
## 201220980007_R04C01 201220980007_R05C01
##colData names(0):
##Annotation
## array: IlluminaHumanMethylationEPIC
## annotation: ilm10b2.hg19 |
Thanks for testing. Two comments
|
Illumina has decided to remove a small number of probes from the DMAP files for the EPIC array.
They also have a new manifest to correspond to their new DMAP files.
Currently, however, the idats contain fewer probes and minfi does not have a manifest to associate with these data.
Is there a way to add this new manifest and annotate the RGSet appropriately so it will work with other functions?
Thanks!
Eric
The text was updated successfully, but these errors were encountered: