Add comparison gene results to overview

This commit is contained in:
Elias Projahn 2025-02-23 15:51:45 +01:00
parent b3b492172a
commit 7d615f1a9a
2 changed files with 93 additions and 15 deletions

View file

@ -86,19 +86,6 @@ details_server <- function(id, options, results) {
"Percentile"
)
output_data <- reactive({
filtered_results()[, ..columns][
,
distance := paste0(
format(
round(distance / 1000000, digits = 2),
nsmall = 2,
),
" Mbp"
)
]
})
output$download <- downloadHandler(
filename = "geposan_filtered_results.csv",
content = \(file) fwrite(filtered_results()[, ..columns], file = file),