Description Usage Arguments Value Examples
These methods provide a wrapper for the Mean-rank Gene Set Test function wilcoxGST
wilcox_score is a synonym for gst_score with ranks.only=TRUE. This test procedure was developed by Michaud et al (2008), who called it mean-rank gene-set enrichment.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | ## S4 method for signature 'matrix,CMAPCollection'
wilcox_score(experiment, sets, adjust.ties=FALSE, keep.scores=FALSE, ...)
## S4 method for signature 'numeric,CMAPCollection'
wilcox_score(experiment, sets,...)
## S4 method for signature 'eSet,CMAPCollection'
wilcox_score(experiment, sets, element="z",...)
## S4 method for signature 'matrix,GeneSet'
wilcox_score(experiment, sets,...)
## S4 method for signature 'numeric,GeneSet'
wilcox_score(experiment, sets,...)
## S4 method for signature 'eSet,GeneSet'
wilcox_score(experiment, sets, element="z",...)
## S4 method for signature 'matrix,GeneSetCollection'
wilcox_score(experiment, sets,...)
## S4 method for signature 'numeric,GeneSetCollection'
wilcox_score(experiment, sets,...)
## S4 method for signature 'eSet,GeneSetCollection'
wilcox_score(experiment, sets, element="z",...)
## S4 method for signature 'CMAPCollection,eSet'
wilcox_score(experiment, sets, element="z",adjust.ties=FALSE, keep.scores=FALSE,...)
## S4 method for signature 'CMAPCollection,numeric'
wilcox_score(experiment, sets,...)
## S4 method for signature 'CMAPCollection,matrix'
wilcox_score(experiment, sets,...)
## S4 method for signature 'GeneSet,numeric'
wilcox_score(experiment, sets,...)
## S4 method for signature 'GeneSet,matrix'
wilcox_score(experiment, sets,...)
## S4 method for signature 'GeneSet,eSet'
wilcox_score(experiment, sets,element="z",...)
## S4 method for signature 'GeneSetCollection,numeric'
wilcox_score(experiment, sets,...)
## S4 method for signature 'GeneSetCollection,matrix'
wilcox_score(experiment, sets,...)
## S4 method for signature 'GeneSetCollection,eSet'
wilcox_score(experiment, sets,element="z",...)
|
sets |
A |
experiment |
An |
element |
Character vector specifying which channel of an eSet to extract (defaults to "exprs", alternatives may be e.g. "z", etc.) |
... |
Additional arguments passed on to downstream methods. |
adjust.ties |
Logical: adjust Wilcox-Mann-Whitney statistic in the presence of ties ? (Default: FALSE) |
keep.scores |
Logical: keep gene-level scores for all gene sets (Default: FALSE) ? The size of the generated CMAPResults object increases with the number of contained gene sets. For very large collections, setting this parameter to 'TRUE' may require large amounts of memory. |
A CMAPResult object
1 2 3 4 5 6 7 8 9 | data(gCMAPData)
gene.set.collection <- induceCMAPCollection(gCMAPData, "z", higher=2, lower=-2)
profile <- assayDataElement(gCMAPData[,1], "z")
## one profile versus three sets
wilcox_score(profile, gene.set.collection)
## three sets versus three profiles
wilcox_score(gene.set.collection, gCMAPData)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.