Description Usage Arguments Value Author(s) References Examples
The function runs CePa method on microarray or RNA-Seq data. The implementation includes the identification of differentially expressed genes and transformation of pathways' topologies to an appropriate form. Only the ORA version of the CePa method is implemented and covers centralities: equal-weight, in-degree, out-degree, in-reach, out-reach and betweenness.
1 2 3 4 5 |
x |
An |
group |
Name or number of the phenoData column or a character vector or factor that contains required class assigments |
pathways |
A list of pathways in a form from |
type |
Type of the input data, |
which |
Character, which type of nodes is preserved in a pathway. Possible values are |
edgeType |
Character, which type of edges is preserved in a pathway. If |
preparePaths |
Logical, by default the pathways are transformed with |
norm.method |
Character, the method to normalize RNAseq data. If |
test.method |
Character, the method for differentiall expression analysis of RNAseq data. If |
p.th |
Numeric, threshold for p-values of tests for differential expression of genes. Use |
logFC.th |
Numeric, threshold for log fold-change of a gene to identify the gene as differentially expressed. Use negative if you don't want any threshold to be applied |
nperm |
Numeric, number of permutations |
both.directions, maxNodes, minEdges, commonTh, filterSPIA, convertTo, convertBy |
Arguments for the |
A list:
res |
A matrix, each row refers to one pathway, each column to one centrality and the value is a p-value. |
topo.sig |
A list of weights for genes (nodes) in individual pathways |
degtest |
A numeric vector of gene-level differential expression statistics of all genes in the dataset |
Ivana Ihnatova
Gu Z., Liu J., Cao K., Zhang J., Wang J.: Centrality-based pathway enrichment: a systematic approach for finding significant pathways dominated by key genes. BMC Systems Biology 2012, 6:56
1 2 3 4 5 6 7 8 9 | if (require(breastCancerVDX)) {
data("vdx")
pathways<-pathways("hsapiens","biocarta")[1:3]
MAdata<-Biobase::exprs(vdx)[,1:10]
rownames(MAdata)<-Biobase::fData(vdx)[,"Gene.symbol"]
MAdata<-MAdata[!duplicated(rownames(MAdata)),]
CePa(MAdata, Biobase::pData(vdx)[,"er"][1:10], pathways, type="MA", convertTo="SYMBOL")
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.