Skip to content

Commit

Permalink
lower case the merged too
Browse files Browse the repository at this point in the history
  • Loading branch information
jashapiro committed Jul 29, 2024
1 parent 734ee95 commit 6a4a59f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/sce_to_anndata.R
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if (!is.null(opt$output_pca_tsv) && !stringr::str_ends(opt$output_pca_tsv, ".tsv
# this function updates merged object formatting for anndata export
format_merged_sce <- function(sce) {
# paste X to any present reduced dim names
reducedDimNames(sce) <- glue::glue("X_{reducedDimNames(sce)}")
reducedDimNames(sce) <- glue::glue("X_{tolower(reducedDimNames(sce))}")
return(sce)
}

Expand Down

0 comments on commit 6a4a59f

Please sign in to comment.