Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency cleanup and setting up actions #55

Merged
merged 9 commits into from
Mar 19, 2024
Prev Previous commit
Next Next commit
pr comments: prettyForestPlot fix
  • Loading branch information
Kdreval committed Mar 18, 2024
commit d924ae674ce723ebf19fe8e3ec0bcffff96bcaaf
6 changes: 3 additions & 3 deletions R/prettyForestPlot.R
Original file line number Diff line number Diff line change
@@ -266,12 +266,12 @@ prettyForestPlot = function(maf,
theme(axis.text.y = element_blank(), legend.position = "bottom")

arranged_plot = ggarrange(
replica$forest,
replica$bar,
forest,
bar,
widths = c(1, 0.6),
common.legend = TRUE,
align = "h"
)

return(list(fisher = fish_test, forest = forest, bar = bar, legend = legend, arranged = arranged_plot, mutmat = mutmat))
return(list(fisher = fish_test, forest = forest, bar = bar, arranged = arranged_plot, mutmat = mutmat))
}