Description Usage Arguments Details Value Author(s) References Examples
View source: R/siggenepathplot.R
Visualization of BP and KEGG pathway enrichment of functional DmM genes with 5'UTR, CDS and 3'UTR DmM sites.
1 2 3 4 5 6 7 8 9 | siggenepathplot(fdmgene,
intrested_gene,
bp_fdr_thr = 0.05,
kegg_fdr_thr = 0.05,
orgsymbol = org.Hs.egSYMBOL,
input_directory = "",
version = "10",
species = 9606,
savepath = NA)
|
fdmgene |
A vector of functional DmM genes, can be gene entrez id or gene symbol |
intrested_gene |
A vector of interested genes to visualize, can be gene entrez id or gene symbol |
bp_fdr_thr |
The parameter passed to STRINGdb to determine the threshold of fdr to determine significant enriched BP terms |
kegg_fdr_thr |
The parameter passed to STRINGdb to determine the threshold of fdr to determine significant enriched KEGG pathways |
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. |
input_directory |
The parameter passed to STRINGdb to determine whether all the database files will be downloaded into this directory and the package can then be used off-line |
version |
The parameter passed to STRINGdb to determine the version used |
species |
The parameter passed to STRINGdb to determine the species to do enrichment analysis, in defalt it is human |
savepath |
The file path where to save the result |
The enricnment analysis is done using STRINGdb.
By default, siggenepathplot will output results of
1. Plot of the context specific BP and KEGG pathway of interested genes;
2. xls formate of BP and KEGG pathway enrichment terms.
Songyao Zhang
Funm6AViewer: Visualization of single base differential m6A methylation sites and functional DmM genes.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## context specific function annotation for interested genes
dminfo <- system.file("extdata", "DMinfo_toy.xls", package="Funm6AViewer")
dminfo <- read.table(dminfo, header = TRUE, stringsAsFactors = FALSE)
fdmgene <- unique(dminfo$name)
siggene <- c("CCNT1", "MYC", "BCL2")
# The input_directory is the parameter passed to string_db, the GO and KEGG function
# annotation data will be downloaded to the setted filepath.
# You can also donwloaded the annotation data previously
# from https://pan.baidu.com/s/1qOGG57OgxmrTwSbbBEeQ2w&shfl=sharepset
# and set the input_directory as where you save the data.
input_directory <- "E:/Funm6A_package/data"
re <- siggenepathplot(fdmgene = fdmgene, intrested_gene = siggene,
input_directory = input_directory)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.