From 647574b1ed40bde008736c903bd53e9380f581f0 Mon Sep 17 00:00:00 2001 From: Silvio Waschina Date: Tue, 9 Jul 2024 18:57:28 +0200 Subject: [PATCH] remove warning --- R/io.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/io.R b/R/io.R index 1c7c319..2021694 100644 --- a/R/io.R +++ b/R/io.R @@ -193,7 +193,7 @@ writeSBMLmod <- function(model, file_path = NULL) { if(any(grepl("\\.",model@allGenes))) { model@allGenes <- gsub("\\.","_",model@allGenes) model@genes <- lapply(model@genes, FUN = function(x) gsub("\\.","_",x)) - warning("Some gene IDs contain dots ('.'). Replacing them with underscores ('_').") + # warning("Some gene IDs contain dots ('.'). Replacing them with underscores ('_').") }