From 9f541115ebdbf0d2570c892761692105d69fc9c0 Mon Sep 17 00:00:00 2001 From: Bryan Roessler Date: Sun, 4 Aug 2024 23:06:10 -0400 Subject: [PATCH] interactions.R debugging --- workflow/apps/r/interactions.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/apps/r/interactions.R b/workflow/apps/r/interactions.R index 1a24f195..a3c5d842 100644 --- a/workflow/apps/r/interactions.R +++ b/workflow/apps/r/interactions.R @@ -63,11 +63,11 @@ print(paste("The Standard Deviation Value is: ", delBGFactor)) outDir_QC <- paste(outDir,"QC/",sep="") -if !(file.exists(outDir)){ +if (!file.exists(outDir)){ dir.create(file.path(outDir)) } -if !(file.exists(outDir_QC)){ +if (!file.exists(outDir_QC)){ dir.create(file.path(outDir_QC)) }