exampleExpressionSet | R Documentation |
We provide examplar expression data (counts or voomed) as well as exemplar gene sets in different forms.
exampleExpressionSet(
dataset = c("tumor-vs-normal", "tumor-subtype"),
do.voom = TRUE
)
exampleGeneSets(x, unlist = !missing(x))
exampleGeneSetDb()
exampleBiocSet()
exampleGeneSetDF()
exampleSparrowResult(cached = TRUE, methods = c("cameraPR", "fry"))
exampleDgeResult(
species = "human",
id.type = c("entrez", "ensembl"),
induce.bias = NULL
)
dataset |
Character vector indicating what samples wanted, either
|
do.voom |
If TRUE, a voomed EList is returned, otherwise an ExpressionSet of counts. |
x |
If provided, an expression/matrix object so that the genesets are returned as (integer) index vectors into the rows of x whose rownames match the ids in the geneset. |
unlist |
return the genesets as nested list of lists (default: |
cached |
If |
methods |
the methods to use to create a new SparrowResult for. |
species |
the species to return the example result from (right now, only "human") |
id.type |
the type of identifiers to use: |
induce.bias |
We can simulate a bias on the pvalue by the gene's
|
A list of lists of entrezIDs when as == 'lol'
, or
a list of integers into the rows of x
.
The expression data is a subset of the TCGA BRCA indication. Calling
exampleExpressionSet(do.voom = TRUE)
will return a voomed EList
version
of the data. When do.voom = FALSE
, you will get a DGEList of the counts
Returns gene sets as either a list of feature identifiers. Entrez identifiers
are used. If x
is provided, integers that index into the expression
container x
are used (this is a legacy feature that we should nuke).
Returns gene sets as a GeneSetDb
object
Returns gene sets as a BiocSet
object
Returns a data.frame of gene set definitions. A data.frame of this form
can be passed into the GeneSetDb()
contructor.
vm <- exampleExpressionSet()
head(exampleGeneSets())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.