From e2fb628e9d024e4eeaf1dabfdd3c02be1eb6c780 Mon Sep 17 00:00:00 2001 From: JoseCorCab Date: Fri, 7 Jun 2024 12:51:52 +0200 Subject: [PATCH] input names check removed --- inst/scripts/degenes_Hunter.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/scripts/degenes_Hunter.R b/inst/scripts/degenes_Hunter.R index 8f5f6c6..479a58e 100755 --- a/inst/scripts/degenes_Hunter.R +++ b/inst/scripts/degenes_Hunter.R @@ -224,7 +224,7 @@ if(! is.null(c(opt$target_file, opt$Control_columns, opt$Treatment_columns))) { } if(! is.null(opt$input_file)) { raw_count_table <- read.table(opt$input_file, - header=TRUE, row.names=1, sep="\t") + header=TRUE, row.names=1, sep="\t", check.names = FALSE) } else { raw_count_table <- NULL }