Skip to contents

Remove cells if not enough or too many in one image

Usage

removeOutliers(sce, min, max)

Arguments

sce

SingleCellExperiment object

min

Remove cells below that number

max

Remove cells above that number

Value

SingleCellExperiment object

Examples

set.seed(23)
cell_file <- generate_data()
sce <- loadData(cell_file)
sce <- removeOutliers(sce, min = 0, max = 300)