Description Usage Arguments Details Value Author(s) References Examples
Visualization of DmM sites on gene's isoforms.
| 1 2 3 4 5 6 | dmsiteplot(dminfo,
           intrested_gene,
           savepath = NA,
           txdb = TxDb.Hsapiens.UCSC.hg19.knownGene,
           orgsymbol = org.Hs.egSYMBOL,
           orgdb = org.Hs.eg.db)
 | 
| dminfo | A dataframe of DmM sites information. It can be generated using summarydmdeepm6A from DMDeepm6A package result. | 
| intrested_gene | A vector of interested gene to visualize, can be entrez gene id or gene symbol | 
| savepath | The file path where to save the result | 
| txdb | The txdb famate genome annotation. You need to input it similar to "TxDb.Hsapiens.UCSC.hg19.knownGene" if use other genomes instead of hg19. | 
| orgsymbol | The gene name annotation. You need to input it similar to "org.Hs.egSYMBOL" if DefaultGenome is use other genomes instead of human genome. | 
| orgdb | The annotation of genome. You need to input it similar to "org.Hs.eg.db" if DefaultGenome is use other genomes instead of human genome. | 
This function is used to visualize DmM sites on interested gene's isoforms.
By default, dmsiteplot will output results of DmM sites on interested gene's isoforms.
Songyao Zhang
Funm6AViewer: Visualization of single base differential m6A methylation sites and functional DmM genes.
| 1 2 3 4 5 6 7 8 | ## dm sites plot for interested genes
dminfo <- system.file("extdata", "DMinfo_toy.xls", package="Funm6AViewer")
dminfo <- read.table(dminfo, header = TRUE, stringsAsFactors = FALSE)
siggene <- c("CCNT1", "MYC", "BCL2")
re <- dmsiteplot(dminfo = dminfo, intrested_gene = siggene)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.