I'm visualizing a series of gene clusters with gggenes, and was wondering if there is a built-in functionality or workaround to shorten long, unannotated regions between genes of interest. Here's the set of genes giving me grief:
df<-data.frame(start=c(594198,596540,598457,600085,983488,984345),
stop=c(596450,598423,600070,601182,984336,986495),
species=rep("Ferriphaselus amnicola",6),
gene=c("gene1","gene2","gene3","gene4","gene5","gene6"))
When you use gggenes to visualize this, you get something not so pretty:
ggplot(df, aes(xmin = start, xmax = stop, y = species, fill = gene)) +
geom_gene_arrow() +
facet_wrap(~ species, scales = "free", ncol = 1) +
scale_fill_brewer(palette = "Set3") +
theme_genes()
Ideally, I"d be able to tell gggenes that when there are more than x number of nucleotides between 2 genes, replace that span of genome with two slashes (as is customary in the literature). I'm imagining something like this edit I cobbled together in powerpoint:
Is there a straightforward way to do this in gggenes, or even in another package?
Thank you!
Searching Google for an axis-breaking option brought up the ggbreak package:
It took a bit of fiddling to narrow down the proper breakpoints but this looks promising. Assuming you assigned your plot object to the name
plt
:After the first instance of fiddling I started getting warnings, but plots were still produced.