Skip to content

Commit

Permalink
Add dplyr:: dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jpquast committed May 21, 2024
1 parent fa4d048 commit d11176a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/calculate_go_enrichment.R
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ if you used the right organism ID.", prefix = "\n", initial = ""))
go_id = .y
)
) %>%
mutate({{ group }} := .y)
dplyr::mutate({{ group }} := .y)
}
)
}
Expand Down Expand Up @@ -448,7 +448,7 @@ if you used the right organism ID.", prefix = "\n", initial = ""))

if (replace_long_name & !missing(go_annotations_uniprot)) {
filtered_result_table <- filtered_result_table %>%
mutate(term = ifelse(nchar(.data$term) > 50, .data$go_id, .data$term))
dplyr::mutate(term = ifelse(nchar(.data$term) > 50, .data$go_id, .data$term))
}

if (!missing(group) & y_axis_free & plot_style == "barplot") {
Expand Down

0 comments on commit d11176a

Please sign in to comment.