Skip to content
Snippets Groups Projects
Commit 07309681 authored by Jeffrey Pullin's avatar Jeffrey Pullin
Browse files

Fix some gene names Seurat mangles

parent 8190c935
No related branches found
No related tags found
No related merge requests found
......@@ -61,6 +61,10 @@ run_seurat <- function(sce, pars) {
result <- tibble::as_tibble(result)
# Fix some mangled gene names.
result$gene <- ifelse(result$gene == "Hba-a2-loc1", "Hba-a2_loc1", result$gene)
result$gene <- ifelse(result$gene == "Hba-a2-loc2", "Hba-a2_loc2", result$gene)
validate_mgs_result(result)
# Get the elapsed time.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment