Skip to content

Commit

Permalink
Removes unnecessary as.character()
Browse files Browse the repository at this point in the history
  • Loading branch information
vucinick committed Jul 29, 2024
1 parent 1a218e8 commit 16ea192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/markers.R
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ generate_markers_results_section <- function(df, group_var, dt_order_by, base_ou
set_names(dplyr::group_keys(df) %>% dplyr::pull(!!sym(group_var)))

if (!any(names(df_list) %in% c("binom", "t", "wilcox"))) {
df_list <- df_list[as.character(order(names(df_list)))]
df_list <- df_list[order(names(df_list))]
}

z <- lapply(names(df_list), function(name) {
Expand Down

0 comments on commit 16ea192

Please sign in to comment.