Skip to content

Commit 16062f4

Browse files
committed
fix sorting issue when collecting results due to change in dplyr >= 1.1.0
1 parent 2907ab4 commit 16062f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/utils.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ collect_results <- function(folders) {
167167
dplyr::filter(sample == !!sample) %>%
168168
dplyr::pull(target) %>%
169169
unique() %>%
170-
sort()
170+
sort(method = "radix")
171171
views <- contributions %>%
172172
dplyr::pull(view) %>%
173173
unique() %>%
@@ -189,7 +189,7 @@ collect_results <- function(folders) {
189189
purrr::map(~ .x$feature) %>%
190190
unlist() %>%
191191
unique() %>%
192-
sort()
192+
sort(method = "radix")
193193

194194
pvalues <- contributions %>%
195195
dplyr::filter(sample == !!sample, view == paste0("p.", !!view)) %>%

0 commit comments

Comments
 (0)