readVisium | R Documentation |
Load a Visium spatial dataset as a SingleCellExperiment.
readVisium(
dirname,
rm.feats.pat = c("^NegControl.*", "^BLANK.*", "^DEPRECATED.*")
)
read10Xh5(
dirname,
fname = "filtered_feature_bc_matrix.h5",
rm.feats.pat = c("^NegControl.*", "^BLANK.*", "^DEPRECATED.*")
)
counts2h5(dirname)
dirname |
Path to spaceranger output directory (e.g. "sampleID/outs/").
This directory must contain the counts matrix and feature/barcode TSVs in
|
rm.feats.pat |
Patterns for features (genes) to remove. |
fname |
File name of the h5 file. It should be inside |
We store two variables associated with downstream BayesSpace
functions in a list called BayesSpace.data
in the
SingleCellExperiment's metadata
.
platform
is set to "Visium", and is used to determine spot
layout and neighborhood structure.
is.enhanced
is set to FALSE
to denote the object
contains spot-level data.
SingleCellExperiment containing the counts matrix in counts
and spatial data in colData
. Array coordinates for each spot are
stored in columns array_row
and array_col
, while image
coordinates are stored in columns pxl_row_in_fullres
and
pxl_col_in_fullres
.
## Not run:
sce <- readVisium("path/to/outs/")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.