Skip to content

Commit

Permalink
Forgot to document new 'add_logo' argument in plotting functions
Browse files Browse the repository at this point in the history
  • Loading branch information
gavieira committed Dec 16, 2023
1 parent bdb1c25 commit 382af5f
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
7 changes: 5 additions & 2 deletions R/06-plots_and_app.R
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,11 @@ plot_upset <- function(db_list, add_logo = TRUE, ...) {
matrix.color = "#08306B",
...)

return ( add_logo_to_plot(upset) )
#return ( upset )
if (add_logo) {
return(add_logo_to_plot(upset))
}

return ( upset )
}


Expand Down
2 changes: 1 addition & 1 deletion man/merge_input_files.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion man/plot_matching_summary.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion man/plot_upset.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion man/plot_venn.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 382af5f

Please sign in to comment.