Would be nice to remove brush when strata variable or statistic change. [Should be doable with `session$resetBrush`]( https://stackoverflow.com/questions/30588472/is-it-possible-to-clear-the-brushed-area-of-a-plot-in-shiny), but it's [non-trivial to use in modules](https://github.com/rstudio/shiny/issues/2866). Seems like update will be easy once [this PR](https://github.com/rstudio/shiny/pull/3683) is merged. Once that's ready, we should be able to drop something like this in `volcano_server`: ``` observeEvent(input$stratification_values, { session$resetBrush(input$brush$plot_brush) }) ```