From 988b3b1187f68f13727ecec2e4b4eea68d73234e Mon Sep 17 00:00:00 2001
From: "Gervaise H. Henry" <gervaise.henry@utsouthwestern.edu>
Date: Thu, 7 Jan 2021 23:18:03 -0600
Subject: [PATCH] Fix config

---
 workflow/nextflow.config | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/workflow/nextflow.config b/workflow/nextflow.config
index e28fe79..8ee8989 100644
--- a/workflow/nextflow.config
+++ b/workflow/nextflow.config
@@ -98,18 +98,18 @@ process {
 
 trace {
   enabled = true
-  file = '${params.outDir}/${params.repRID}_trace.txt'
+  file = "${params.outDir}/${params.repRID}_trace.txt"
   fields = 'task_id,native_id,process,name,status,exit,submit,start,complete,duration,realtime,%cpu,%mem,rss'
 }
 
 timeline {
   enabled = true
-  file = '${params.outDir}/${param.repRID}_timeline.html'
+  file = "${params.outDir}/${params.repRID}_timeline.html"
 }
 
 report {
   enabled = true
-  file = '${params.outDir}/${param.repRID}_report.html'
+  file = "${params.outDir}/${params.repRID}_report.html"
 }
 
 tower {
-- 
GitLab