Learn R Programming

scran (version 1.0.3)

sandbag: Cell cycle phase training

Description

Use gene expression data to train a classifier for cell cycle phase.

Usage

"sandbag"(x, is.G1, is.S, is.G2M, gene.names=rownames(x), fraction=0.5) "sandbag"(x, ..., assay="counts", get.spikes=FALSE)

Arguments

x
A numeric matrix of gene expression values where rows are genes and columns are cells. Alternatively, a SCESet object containing such a matrix.
is.G1, is.S, is.G2M
A vector indicating which cells are in each phase of the cell cycle.
gene.names
A character vector of gene names.
fraction
A numeric scalar specifying the minimum fraction to define a marker gene pair.
...
Additional arguments to pass to sandbag,matrix-method.
assay
A string specifying which assay values to use, e.g., counts or exprs.
get.spikes
A logical specifying whether spike-in transcripts should be used.

Value

A named list of data.frames, where each data frame corresponds to a cell cycle phase and contains the names of the genes in each marker pair.

Details

This function implements the training step of the pair-based prediction method described by Scialdone et al. (2015). Pairs of genes (A, B) are identified from a training data set where in each pair, the fraction of cells in phase G1 with expression of A > B (based on expression values in training.data) and the fraction with B > A in each other phase exceeds fraction. These pairs are defined as the marker pairs for G1. This is repeated for each phase to obtain a separate marker pair set.

Pre-defined sets of marker pairs are provided for mouse (see Examples). Classification from test data can be performed using the cyclone function. For each cell, this involves comparing expression values between genes in each marker pair. The cell is then assigned to the phase that is consistent with the direction of the difference in expression in the majority of pairs.

For sandbag,SCESet-method, the matrix of counts is used but can be replaced with expression values by setting assays. By default, get.spikes=FALSE which means that any rows corresponding to spike-in transcripts will not be considered when picking markers. This is because the amount of spike-in RNA added will vary between experiments, such that the relative expression of genes to spike-ins will not be a reliable predictor. Nonetheless, if all rows are required, users can set get.spikes=TRUE.

References

Scialdone A, Natarajana KN, Saraiva LR et al. (2015). Computational assignment of cell-cycle stage from single-cell transcriptome data. Methods 85:54--61

See Also

cyclone

Examples

Run this code
ncells <- 50
ngenes <- 20
training <- matrix(rnorm(ncells*ngenes), ncol=ncells)
rownames(training) <- paste0("X", seq_len(ngenes))

is.G1 <- 1:20
is.S <- 21:30
is.G2M <- 31:50
out <- sandbag(training, is.G1, is.S, is.G2M) 

# Getting pre-trained marker sets
mm.pairs <- readRDS(system.file("exdata", "mouse_cycle_markers.rds", package="scran"))
hs.pairs <- readRDS(system.file("exdata", "human_cycle_markers.rds", package="scran"))

Run the code above in your browser using DataLab