From fc98bbb4513f4bfa2452dcee13c7b712f3dd4901 Mon Sep 17 00:00:00 2001 From: Caitlin Winkler Date: Wed, 31 Jan 2024 10:39:41 -0700 Subject: [PATCH] Fix column types --- R/experiments_data.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/experiments_data.R b/R/experiments_data.R index 2ca6874..ee668dc 100644 --- a/R/experiments_data.R +++ b/R/experiments_data.R @@ -384,7 +384,7 @@ add_cluster_annotations <- function(seurat_obj, cluster_obj, silent = FALSE){ } annotation_set <- data.frame( factor(cluster_number), - cluster_display_name, + factor(cluster_display_name), cluster_color ) colnames(annotation_set) <- c(target_res, clean_display_name, "cluster_color")