Browse code

fixing tidyselect warnings in the unit tests

Federico Marini authored on 30/01/2023 14:10:03
Showing 1 changed files

... ...
@@ -223,7 +223,7 @@ gs_fuzzyclustering <- function(res_enrich,
223 223
     group_by(.data$gs_fuzzycluster) %>%
224 224
     arrange(.data$gs_pvalue) %>%
225 225
     slice(1) %>%
226
-    select(.data$gs_id, .data$gs_fuzzycluster)
226
+    select("gs_id", "gs_fuzzycluster")
227 227
   # handling this with tuple to account where the gene set is most representative
228 228
   gs_mostsig_tuple <- paste0(gs_mostsig$gs_id, "|", gs_mostsig$gs_fuzzycluster)
229 229