Show all chromosomes in position plot by default

This commit is contained in:
Elias Projahn 2022-05-23 11:39:30 +02:00
parent 17b738378a
commit 47b8d7a1f0
2 changed files with 11 additions and 2 deletions

5
R/ui.R
View file

@ -73,7 +73,10 @@ ui <- function(options) {
selectInput(
"positions_plot_chromosome_name",
label = NULL,
choices = chromosome_choices()
choices = c(
list("All chromosomes" = "all"),
chromosome_choices()
)
),
plotly::plotlyOutput(
"positions_plot",