Answers for "gene genome plot"

0

gene genome plot

library(ggplot2)# install.packages("gggenes")# devtools::install_github("wilkox/gggenes")library(gggenes)
Posted by: Guest on June-22-2021
0

gene genome plot

p1 <- ggplot(example_genes, aes(xmin = start, xmax = end, y = molecule, fill = gene)) +  geom_gene_arrow() +  facet_wrap(~ molecule, scales = "free", ncol = 1) +  scale_fill_brewer(palette = "Set3")ggsave("test.pdf", p, width = 10, height = 20)
Posted by: Guest on June-22-2021

Browse Popular Code Answers by Language