Skip to content

Commit

Permalink
fixing length condition bug in controlStripPlot
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperdanielhansen committed Mar 5, 2020
1 parent 7f420e9 commit 0131037
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: minfi
Version: 1.33.0
Version: 1.33.1
Title: Analyze Illumina Infinium DNA methylation arrays
Description: Tools to analyze & visualize Illumina Infinium methylation arrays.
Authors@R: c(person(c("Kasper", "Daniel"), "Hansen", role = c("cre", "aut"),
Expand Down
2 changes: 1 addition & 1 deletion R/qc.R
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ controlStripPlot <- function(rgSet,
ctl <- rbind(
cbind(channel = "Red", ctlR),
cbind(channel = "Green", ctlG))
if (any((ctl$value < xlim[1]) || (ctl$value > xlim[2]))) {
if (any((ctl$value < xlim[1]) | (ctl$value > xlim[2]))) {
message("Warning: ", controlType, " probes outside plot range")
}
fig <- xyplot(
Expand Down

0 comments on commit 0131037

Please sign in to comment.