Add custom genes details table

This commit is contained in:
Elias Projahn 2022-06-22 12:39:26 +02:00
parent 989655307b
commit 27f66d7f35
2 changed files with 7 additions and 1 deletions

View file

@ -76,6 +76,10 @@ server <- function(input, output, session) {
box_plot(ranked_data(), custom_genes())
)
output$custom_genes_details <- DT::renderDT({
genes_table(ranked_data()[gene %chin% custom_genes()])
})
output$scores_plot <- plotly::renderPlotly(scores_plot(
ranked_data(),
highlighted_genes = custom_genes()