Closed markgene closed 6 years ago
Thans, Mark. minfi is undergoing some pretty substantial internal changes prior to the next release. I'll be sure to incorporate your patch (or similar) into these changes.
I've addressed this in https://github.com/PeteHaitch/minfi/commit/adbce4467b7efd9a30bffaf530505ef0ce4719fe, which will soon be merged into the version of minfi available from Bioconductor.
Thanks again for the report.
Thank you, Peter!
plotSex()
returned an error messageError: all(c("predictedSex", "xMed", "yMed") %in% names(object)) is not TRUE
when running with the examples, whereaddSex()
returned GMsetEx using minfiData example data. It is because theaddSex()
only addspredictedSex
column but notxMed
oryMed
. I fixaddSex()
.Another bug is the check point of
names(object)
. As the object is [Genomic]MethylSet, we should usecolnames(pData(object))
.