We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, there is a bug at line 72 in 'visualize_isoforms.R'
old, which could not raise a legend
legend_plot <- cowplot::get_legend(prop_with_legend_plot)
I try in other way
legend_plot <- ggplotGrob(prop_with_legend_plot)$grobs[[which(sapply(ggplotGrob(prop_with_legend_plot)$grobs, function(x) x$name == "guide-box"))]]
The text was updated successfully, but these errors were encountered:
From wilkelab/cowplot#200 it looks like a known issue that cowplot::get_legend() doesn't work with ggplot2 3.5.0
cowplot::get_legend()
It also looks like an update to cowplot is being worked on: wilkelab/cowplot#202
I checked that using ggplot2 3.4.4 still works. I'll give some time for a cowplot update before making any changes to the code
Sorry, something went wrong.
Thanks a lot.
No branches or pull requests
Hi, there is a bug at line 72 in 'visualize_isoforms.R'
old, which could not raise a legend
I try in other way
The text was updated successfully, but these errors were encountered: