Skip to content

Commit

Permalink
Merge pull request #1169 from bigomics/fix-1168
Browse files Browse the repository at this point in the history
Fix #1168: Sample heatmap, splitby gene breaks on some genes
  • Loading branch information
ivokwee authored Oct 14, 2024
2 parents cf64894 + 5140da9 commit de24836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/board.clustering/R/clustering_server.R
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ ClusteringBoard <- function(id, pgx, labeltype = shiny::reactive("feature")) {
return()
}
if (input$hm_splitby == "gene") {
xgenes <- sort(rownames(pgx$X))
xgenes <- sort(rownames(getFilteredMatrix()$zx))
shiny::updateSelectizeInput(session, "hm_splitvar", choices = xgenes, server = TRUE)
}
if (input$hm_splitby == "phenotype") {
Expand Down

0 comments on commit de24836

Please sign in to comment.