Description Usage Arguments Details Value Examples
View source: R/spagi2_master.R
This function identifies active pathway paths for RNA-seq gene expression profile. It utilizes background pathway path data to identify the active pathway paths.
1 | identify_active_pathway_path_new(pathway.path, processed.query.data)
|
pathway.path |
A list with pathway path data where each sublist denotes a path of the pathway. This is used as background data. |
processed.query.data |
A list with expressed query data where each sublist corresponds for each cell/tissue type. |
This function identifies active pathway paths for RNA-seq gene expression profile. It utilizes background pathway path data to identify the active pathway paths.
This function returns a list of pathways where each sublist denote a path of the pathway.
1 2 3 4 5 6 7 8 9 | #Pre-process the 'tooth.epi.E13.5' data
tooth.epi.E13.5.processed.data<-preprocess_querydata_new(cell.tissue.data = tooth.epi.E13.5, exp.cutoff.th = 5.0, species="mmusculus")
#Generate the homology data for the two species - 'hsapiens' and 'mmusculus'
mouse.homology.data<-generate_homology_data(species1 = "hsapiens", species2 = "mmusculus")
#Generate the mouse homology pathway path data
mouse.homology.pathway.path<-generate_homology_pathways(species.homology.data = mouse.homology.data, pathway.path = pathway.path.new)
#Identify active pathway paths of the processed query data
tooth.epi.E13.5.active.pathway<-identify_active_pathway_path_new(pathway.path = mouse.homology.pathway.path, processed.query.data = tooth.epi.E13.5.processed.data)
head(summary(tooth.epi.E13.5.active.pathway$E13.5_Epi))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.