Description Usage Arguments Value Examples
View source: R/addCoordinates.R
Add coordinates to Object Adds output of Spot Detector coordinates to Seurat object or SCE object created by createSeurat/createSCE. Details about how to use Spot Detector can be found: https://github.com/SpatialTranscriptomicsResearch/st_spot_detector
1 | addCoordinates(object, coordinatesFile, scaleFactor = NULL)
|
object |
either a Seurat object or SCE |
coordinatesFile |
path to coordinates file exported from Spot Detector |
scaleFactor |
a scaling factor which can be used if the image file has been reduced in size after the coordinates were generated. For example if the image to be used is 10 percent the size of the original factor scaleFactor = 10 |
object
1 2 3 4 5 6 7 | ### load a SingleCellExperiment Object
sceObj <- readRDS(file.path(system.file(package = "Spaniel"),
"extdata/sceData.rds"))
### path to coordinates file exported from spot detector
coordinatesFile <- file.path(system.file(package = "Spaniel"),
"spot_positions.tsv")
sceObj <- addCoordinates(sceObj, coordinatesFile)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.