Description Usage Arguments Details Value Author(s) References Examples
TopologyGSA method uses graphical models to test the differential expression of a pathway. It also highlights pathway components involved in the deregulation.
1 2 3 4 5 6 | TopologyGSA(x, group, pathways, type, which = "proteins",
edgeType = NULL, preparePaths = TRUE, norm.method = NULL,
test.method = NULL, method = "mean", nperm = 1000, alpha = 0.05,
testCliques = FALSE, both.directions = TRUE, maxNodes = 150,
minEdges = 0, commonTh = 2, filterSPIA = FALSE,
convertTo = "none", convertBy = NULL)
|
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 |
method |
Either |
nperm |
Numeric, number of permutations. |
alpha |
Numeric, threshold for statistical significance of variance test. It influences the method for the mean test |
testCliques |
Logical, if |
both.directions, maxNodes, minEdges, commonTh, filterSPIA, convertTo, convertBy |
Arguments for the |
The method requires a Directed Acyclic Graph (DAG). Therefore if a pathway contain also undirected or bidirected edges and error is thrown.
The user can further specify for the mean test:
perms number of permutations of the test,
paired logical, if TRUE Hotelling test for paired samples is calculated and the test on the variances is not performed
Or for the variance test:
variance logical, if TRUE the estimates of the covariance matrices are included in the result.
s1 First group covariance matrix estimation.
s2 Second group covariance matrix estimation.
A list
res |
a list with one entry for each successfully analyzed pathway |
topo.sig |
if |
degtest |
A numeric vector of gene-level differential expression statistics |
Ivana Ihnatova
Massa MS, Chiogna M, Romualdi C. Gene set analysis exploiting the topology of a pathway. BMC System Biol. 2010 Sep 1;4:121.
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
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)),]
TopologyGSA(MAdata, Biobase::pData(vdx)[,"er"][1:10], pathways, type="MA", convertTo="SYMBOL", nperm=10)
}
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.