Description Usage Arguments Value Examples
View source: R/extract_genes_by_pathway.R
Extract DEGs from pathways
1 2 3 4 5 6 | extract_genes_by_pathway(
pathway,
deg,
class = c("mmu", "hsa", "gga"),
out.name = NULL
)
|
pathway |
A vector contains interested pathwat names |
deg |
A dataframe contains DEGS information |
class |
Specify which type of gene |
out.name |
A file name ends with ".xlsx", if specified, the output will be written into this file |
A list of DEGS for each pathway
1 2 3 | pathway <- c("Purine metabolism", "PI3K-Akt signaling pathway", "AMPK signaling pathway", "Choline metabolism in cancer")
deg = grab_deg_from_cuffdiff(gene_exp.diff)
deg.list = extract_genes_by_pathway(pathway, deg, class = "mmu")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.