R/Utilities.R
Case_Check.Rd
Check for alternate case features Checks Seurat object for the presence of features with the same spelling but alternate case.
Case_Check(
seurat_object,
gene_list,
case_check_msg = TRUE,
return_features = TRUE,
assay = NULL
)
Seurat object name.
vector of genes to check.
logical. Whether to print message to console if alternate case features are found in addition to inclusion in returned list. Default is TRUE.
logical. Whether to return vector of alternate case features. Default is TRUE.
Name of assay to pull feature names from. If NULL will use the result of DefaultAssay(seurat_object)
.
If features found returns vector of found alternate case features and prints message depending on parameters specified.
if (FALSE) {
alt_features <- Case_Check(seurat_object = obj_name, gene_list = DEG_list)
}