From a6dc2a92549841be175295648b321bc891ddd3dd Mon Sep 17 00:00:00 2001 From: Christina Schmidt Date: Mon, 4 Nov 2024 14:06:16 +0100 Subject: [PATCH] Fixed error when TIC==FALSE (Error: TICRes_List not found) --- R/Processing.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/Processing.R b/R/Processing.R index 0e6cc6f..ebd18ed 100644 --- a/R/Processing.R +++ b/R/Processing.R @@ -210,7 +210,7 @@ PreProcessing <- function(InputData, } ## ---- Plots - if(is.null(TIC)==FALSE){ + if(TIC==TRUE){ PlotList <- c(TICRes_List[["Plot"]], OutlierRes[["Plot"]]) }else{ PlotList <- c(RLAPlot_List[["Plot"]])