dataPrepFromSpE | R Documentation |
This data preparation function creates a data.frame form Spatial Experiment Object. It extracts the pixel information and cluster labels of each barcode from user's input Seurat Object and generate a data.frame with a certain format which is required for the algorithm. If the user has customized labels, this function will change the column name to "Cluster" when generating the data.frame to make it consist to the required format.
dataPrepFromSpE(SpeObj, label)
SpeObj |
input SpatialExperiment object that contains labels for each barcode |
label |
the column name of the label information in "colData" |
A data.frame contains the pixel information and cluster labels for each barcode of the sample. The index contains barcodes, and at least three other columns that have these information are required and the column names should be the same as following: "imagerow": The row pixel coordinate of the center of the spot "imagecol": The column pixel coordinate of the center of the spot "Cluster": The label that corresponding to this barcode
fpath <- system.file("extdata", "SpeBC.rda", package="stJoincount") load(fpath) df <- dataPrepFromSpE(SpeObjBC, "label")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.