Description Usage Arguments Value Examples
A function to filter spots from analysis. It requires selectSpots to be run first.
1 | removeSpots(sObj, pointsToRemove = "points_to_remove.txt")
|
sObj |
Either a Seurat object (version 3) or a SingleCellExperiment object containing barcode coordinates in the metadata (Seurat) or colData (SingleCellExperiment). |
pointsToRemove |
path to points to remove file. Default is "points_to_remove.txt" |
A filtered Seurat or SingleCellExperiment Object
1 2 3 4 5 | seuratObj <- readRDS(file.path(system.file(package = "Spaniel"),
"extdata/SeuratData.rds"))
toRemove <- file.path(system.file(package = "Spaniel"),
"points_to_remove.txt")
sObjFiltered <- removeSpots(sObj = seuratObj, pointsToRemove = toRemove)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.