pathwayGeneTab | R Documentation |
Generates a table of pathways and genes associations.
pathwayGeneTab( pathAdress = NA, pathwayList = NA, fromType = "ENTREZID", toType = "ENSEMBL", outDir = NA )
pathAdress |
Address to an RDS file containing list of pathways where each element is a list of genes similar to GMT format. |
pathwayList |
If you wish to use a list of pathways instead of a file use this argument instead. The list must contain no NA values. |
fromType |
gene annotation type used in your input data. |
toType |
gene annotation type to be produced in the output. |
outDir |
Address to save an RDS for a table of pathway-gene association |
pathExpTab Table of pathway-gene association.
pathway1 <- c("125", "3099", "126") pathway2 <- c("5232", "5230", "5162") pathList <- list("Path1" = pathway1, "Path2" = pathway2) res <- pathwayGeneTab(pathwayList = pathList) data(msigdb_c2) pathwayGeneTab(pathwayList = msigdb_c2[1:2])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.