Description Usage Arguments Value Author(s) See Also Examples
View source: R/makeSummarizedExperimentFromLoom.R
makeSummarizedExperimentFromLoom
represents a '.loom' file as
a SummarizedExperiment
. The '/matrix'
and
'/layers'
are represented as HDF5Array
objects; row
and column attributes are parsed to DataFrame
. Optionally,
row or column attributes can be specified as row and and column
names.
1 2 3 | makeSummarizedExperimentFromLoom(file,
rownames_attr = NULL,
colnames_attr = NULL)
|
file |
The path (as a single character string) to the HDF5 file where the dataset is located. |
rownames_attr |
The name of the row attribute to be used as row names. |
colnames_attr |
The name of the column attribute to be used as column names. |
A SummarizedExperiment object with row and column data and one or more assays.
Martin Morgan
http://loompy.org/loompy-docs/format/index.html for a specification of the .loom format.
1 2 3 4 5 6 7 8 9 10 11 | ## ---------------------------------------------------------------------
## BASIC EXAMPLE
## ---------------------------------------------------------------------
file <- system.file(
package="SummarizedExperiment", "extdata", "example.loom"
)
se <- makeSummarizedExperimentFromLoom(file)
se
assay(se)
metadata(se)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.