From 577c73553496d10818124d3b8994f979ac2784e1 Mon Sep 17 00:00:00 2001 From: marinakiweler Date: Fri, 24 May 2019 10:14:11 +0200 Subject: [PATCH] -r as option of the .exe --- R/load_meta_functions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/load_meta_functions.R b/R/load_meta_functions.R index 879bcdc..9554524 100644 --- a/R/load_meta_functions.R +++ b/R/load_meta_functions.R @@ -42,7 +42,7 @@ generate_json <- function(path_data, silent = FALSE) stop("Function is only working under windows.") } - system(command = paste(path_MARMoSET_exe, paste0('"',path_data, '"'), new_file), + system(command = paste(path_MARMoSET_exe, paste0('"',path_data, '"'), "-r", new_file), show.output.on.console = !silent) json <- jsonlite::fromJSON(new_file)