Skip to content

viewing the plant, bacterial, fungal multigene genome annotations.

Notifications You must be signed in to change notification settings

applicativesystem/multi-view-genome-annotations

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

genome-annotation-multivisual

  • This allows for the visualization of any coding regions coming from the protein alignments. support for the visualization of all the coding regions for a specific ids. implemented dplyr so that it will be faster.

  • run the function as

genecoding <- function(genomealigned, ids, strand)
 # where genomealigned is the gff file 
 # ids your specific ids
 # strand specific strand positive or negative
 output <- genecoding(multi.gff, "ids", positive)
  • plot the genes as
library(ggplot2)
library(gggenes)
ggplot(output, aes(xmin = start, xmax = end, y = molecule, fill = gene)) +
  geom_gene_arrow() +
  facet_wrap(~ molecule, scales = "free", ncol = 1) +
  scale_fill_brewer(palette = "Set3")

Gaurav Sablok
University of Potsdam
Potsdam,Germany

Releases

No releases published

Packages

No packages published

Languages