Skip to content

Commit

Permalink
Fix multirange bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
djhammill committed Feb 14, 2024
1 parent f2bc5bf commit 573b5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/cyto_gate_draw-helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
}

# MULTIRANGE
if(type %in% "multirange" & !any(grepl("Time", channels, ignore.case = TRUE))) {
if(any(type %in% "multirange") & !any(grepl("Time", channels, ignore.case = TRUE))) {
stop(
"MultiRangeGates are only currently supported for the Time channel"
)
Expand Down

0 comments on commit 573b5b4

Please sign in to comment.