Skip to content

Commit f78a9ac

Browse files
support for the Asthma and Allergy array version 1.2
1 parent cb8b7c6 commit f78a9ac

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: minfi
2-
Version: 1.43.0
2+
Version: 1.43.1
33
Title: Analyze Illumina Infinium DNA methylation arrays
44
Description: Tools to analyze & visualize Illumina Infinium methylation arrays.
55
Authors@R: c(person(c("Kasper", "Daniel"), "Hansen", role = c("cre", "aut"),

R/read.meth.R

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@
1515
arrayAnnotation <- c(
1616
array = "IlluminaHumanMethylationEPIC",
1717
annotation = .default.epic.annotation)
18-
} else if (nProbes >= 54000 && nProbes <= 56000) {
18+
} else if (nProbes >= 55200 && nProbes <= 55400) {
1919
arrayAnnotation <- c(
2020
array = "IlluminaHumanMethylation27k",
2121
annotation = .default.27k.annotation)
22-
} else if (nProbes >= 41000 & nProbes <= 41100) {
22+
} else if (nProbes >= 54700 && nProbes <= 54800) {
23+
arrayAnnotation <- c(
24+
array = "IlluminaHumanMethylationAllergy",
25+
annotation = .default.allergy.annotation)
26+
} else if (nProbes >= 41000 & nProbes <= 41100) {
2327
arrayAnnotation <- c(
2428
array = "HorvathMammalMethylChip40",
2529
annotation = "test.unknown")

R/utils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ utils::globalVariables(c("channel"))
77
.default.27k.annotation <- "ilmn12.hg19"
88
.default.450k.annotation <- "ilmn12.hg19"
99
.default.epic.annotation <- "ilm10b4.hg19"
10-
.default.allergy.annotation <- "ilm10.hg19"
10+
.default.allergy.annotation <- "ilm12.hg19"
1111
.metharray.types <- c("IlluminaHumanMethylation450k",
1212
"IlluminaHumanMethylationEPIC",
1313
"IlluminaHumanMethylation27k",

inst/NEWS.Rd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
\title{Minfi News}
33
\encoding{UTF-8}
44

5+
\section{Version 1.43}{
6+
\itemize{
7+
\item {v1.43.1} Tightened the recognition code for 27k data to avoid
8+
conflict with the next release of the Allergy and Asthma array.
9+
}
10+
}
11+
512
\section{Version 1.39}{
613
\itemize{
714
\item {v1.39.1} Initial support for the Allergy and Asthma array.

0 commit comments

Comments
 (0)