Skip to contents

Format a dataframe of colData into a singlecellexperiment class where the count assay is empty every cell (columns), and cell phenotype, x and y coordinates are stored under colData for the purpose of passing dataframe into a function requiring sce_object.

Usage

format_colData_to_sce(df)

Arguments

df

Dataframe that will be the colData of the sce object.

Value

An SingleCellExperiment object

Examples

df <- data.frame(Cell.ID = c("Cell_1", "Cell_2"), Cell.X.Positions = c(2,5), 
Cell.Y.Positions = c(3.3, 8), Phenotypes = c("CD3", "CD3,CD8"))
sce <- format_colData_to_sce(df)