plageParam-class | R Documentation |
plageParam
classS4 class for PLAGE method parameter objects.
Objects of class plageParam
contain the parameters for running
the PLAGE
method.
plageParam(
exprData,
geneSets,
assay = NA_character_,
annotation = NULL,
minSize = 1,
maxSize = Inf
)
exprData |
The expression data set. Must be one of the classes
supported by |
geneSets |
The gene sets. Must be one of the classes supported by
|
assay |
Character vector of length 1. The name of the assay to use in
case |
annotation |
An object of class If the default value |
minSize |
Numeric vector of length 1. Minimum size of the resulting gene sets after gene identifier mapping. By default, the minimum size is 1. |
maxSize |
Numeric vector of length 1. Maximum size of the resulting gene
sets after gene identifier mapping. By default, the maximum size is |
Since method PLAGE does not take any method-specific parameters, this
class does not add any slots to the common slots inherited from
GsvaMethodParam
.
PLAGE
takes a number of parameters shared with all methods
implemented by package GSVA but does not take any method-specific parameters.
These parameters are described in detail below.
A new plageParam
object.
Tomfohr, J. et al. Pathway level analysis of gene expression using singular value decomposition. BMC Bioinformatics, 6:225, 2005. DOI
GsvaExprData
,
GsvaGeneSets
,
GsvaMethodParam
,
zscoreParam
,
ssgseaParam
,
gsvaParam
library(GSVA)
library(GSVAdata)
data(leukemia)
data(c2BroadSets)
## for simplicity, use only a subset of the sample data
ses <- leukemia_eset[1:1000, ]
gsc <- c2BroadSets[1:100]
pp1 <- plageParam(ses, gsc)
pp1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.