From 3dea57259bfd54ab0a1001c34f499a3e2a7e6850 Mon Sep 17 00:00:00 2001 From: Dillon Hammill Date: Tue, 5 Nov 2024 12:27:15 +1100 Subject: [PATCH] ODC-179 support empty dims passed to gs_add_gating_method. --- R/csvTemplate-parser.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/csvTemplate-parser.R b/R/csvTemplate-parser.R index a9b944b..50aab54 100644 --- a/R/csvTemplate-parser.R +++ b/R/csvTemplate-parser.R @@ -277,7 +277,7 @@ templateGen <- function(gh){ return(this_row) if(popName == "*" ){ - if(alias == "*"|| dims == "") + if(alias == "*"|| dims %in% c("", NA)) return(this_row) else return(.gen_dummy_ref_gate(this_row))