From 1c88458ce7bcc40efd1537903045b95569a18836 Mon Sep 17 00:00:00 2001 From: Elias Projahn Date: Thu, 26 Aug 2021 12:51:43 +0200 Subject: [PATCH] Fix minor issues --- input.R | 2 -- server.R | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/input.R b/input.R index abb39cd..affa8b7 100644 --- a/input.R +++ b/input.R @@ -7,8 +7,6 @@ library(rlog) #' - `genes` will be a table with metadata on human genes. #' - `species` will contain metadata on each species. #' - `distances` will contain each species' genes' distances to the telomere. -#' -#' @seealso [load_data_cached()] load_input <- function(path) { genes <- fread(paste(path, "genes.tsv", sep = "/")) original_species <- fread(paste(path, "species.csv", sep = "/")) diff --git a/server.R b/server.R index ea65a45..a3c9043 100644 --- a/server.R +++ b/server.R @@ -24,6 +24,7 @@ server <- function(input, output) { output$genes <- renderDT({ datatable( filtered()[, .(.I, name, chromosome, cluster_length, cluster_mean)], + rownames = FALSE, colnames = c( "Rank", "Gene",