display_top_ranked_pathways: display_top_ranked_pathways

Description Usage Arguments Details Examples

Description

This function displays the sorted top n ranked pathways for each cell type or tissue in a barplot.

Usage

1
display_top_ranked_pathways(pathway.ranking.metric, top.n.pathway = 50)

Arguments

pathway.ranking.metric

The ranking metric result returned by 'get_active_pathway_ranking_metric' function.

top.n.pathway

An integer number of how many top ranked pathways will be displayed. Default is 50.

Details

This function displays the sorted top n ranked pathways for each cell type or tissue in a barplot.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Here we will use "pathway.path" as background data from the SPAGI repository.
## Also we will use "ROR1.data" as query RNA-seq gene expression data. This data is for ocular lens epithelial cell differentiated from human pluripotent stem cells.
## These data sets are loaded automatically with the package.

## Pre-process the query data (ROR1.data), the data has already been made in CPM and log2 normalized format.
ROR1.processed.data<-preprocess_querydata(cell.tissue.data = ROR1.data, exp.cutoff.th = 1.8)
## Identify active pathway paths of the processed query data
ROR1.active.pathway<-identify_active_pathway_path(pathway.path = pathway.path, processed.query.data = ROR1.processed.data)
## Get active pathway ranking metric
ROR1.active.pathway.ranking.metric<-get_active_pathway_ranking_metric(active.pathway.path = ROR1.active.pathway, processed.query.data = ROR1.processed.data, high.exp.th = 7)
## Display top n pathways
display_top_ranked_pathways(pathway.ranking.metric = ROR1.active.pathway.ranking.metric)

humayun2017/SPAGI documentation built on May 13, 2019, 1:35 p.m.