R/LIGER_Utilities.R
Variable_Features_ALL_LIGER.Rd
Performs variable gene selection for LIGER object across the entire object instead of by dataset and then taking union.
Variable_Features_ALL_LIGER(
liger_object,
num_genes = NULL,
var.thresh = 0.3,
alpha.thresh = 0.99,
tol = 1e-04,
do.plot = FALSE,
pt.size = 0.3,
chunk = 1000
)
LIGER object name.
Number of genes to find. Optimizes the value of var.thresh
to get
this number of genes, (Default is NULL).
Variance threshold. Main threshold used to identify variable genes. Genes with expression variance greater than threshold (relative to mean) are selected. (higher threshold -> fewer selected genes).
Alpha threshold. Controls upper bound for expected mean gene expression (lower threshold -> higher upper bound). (default 0.99)
Tolerance to use for optimization if num.genes values passed in (default 0.0001).
Display log plot of gene variance vs. gene expression. Selected genes are plotted in green. (Default FALSE)
Point size for plot.
size of chunks in hdf5 file. (Default 1000)
A LIGER Object with variable genes in correct slot.
Matching function parameter text descriptions are taken from rliger::selectGenes
which is called by this function after creating new temporary object/dataset.
https://github.com/welch-lab/liger. (License: GPL-3).
if (FALSE) {
liger_obj <- Variable_Features_ALL_LIGER(liger_object = liger_obj, num_genes = 2000)
}