scmet_to_sce | R Documentation |
Helper function that converts an scmet to SCE object. The
structure of the SCE object to store single cell methylation data is the
following. We create two assays, met
storing methylated CpGs and total
storing total number of CpGs. Rows correspond to features and columns to
cells, similar to scRNA-seq convention. The rownames
and colnames
slots
should store the feature and cell names, respectively. Covariates X
that might explain variability in mean (methylation) should be stored
in metadata(rowData(sce)$X
.
scmet_to_sce(Y, X = NULL)
Y |
Methylation data in data.table format. |
X |
(Optional) Matrix of covariates. |
An SCE object with the structure described above.
C.A.Kapourani C.A.Kapourani@ed.ac.uk
scmet
, scmet_differential
,
scmet_hvf_lvf
# Extract
sce <- scmet_to_sce(Y = scmet_dt$Y, X = scmet_dt$X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.