kkonganti@0: plugins { kkonganti@0: id 'nf-amazon' kkonganti@0: } kkonganti@0: kkonganti@0: params { kkonganti@0: fs = File.separator kkonganti@0: cfsanpipename = 'CPIPES' kkonganti@0: center = 'CFSAN, FDA.' kkonganti@0: libs = "${projectDir}${params.fs}lib" kkonganti@0: modules = "${projectDir}${params.fs}modules" kkonganti@0: projectconf = "${projectDir}${params.fs}conf" kkonganti@0: assetsdir = "${projectDir}${params.fs}assets" kkonganti@0: subworkflows = "${projectDir}${params.fs}subworkflows" kkonganti@0: workflows = "${projectDir}${params.fs}workflows" kkonganti@0: workflowsconf = "${workflows}${params.fs}conf" kkonganti@0: routines = "${libs}${params.fs}routines" kkonganti@0: toolshelp = "${libs}${params.fs}help" kkonganti@0: swmodulepath = "${params.fs}nfs${params.fs}software${params.fs}modules" kkonganti@0: tracereportsdir = "${launchDir}${params.fs}${cfsanpipename}-${params.pipeline}${params.fs}nextflow-reports" kkonganti@0: dummyfile = "${projectDir}${params.fs}assets${params.fs}dummy_file.txt" kkonganti@0: dummyfile2 = "${projectDir}${params.fs}assets${params.fs}dummy_file2.txt" kkonganti@0: max_cpus = 10 kkonganti@0: linewidth = 80 kkonganti@0: pad = 32 kkonganti@0: pipeline = null kkonganti@0: help = null kkonganti@0: input = null kkonganti@0: output = null kkonganti@0: metadata = null kkonganti@0: publish_dir_mode = "copy" kkonganti@0: publish_dir_overwrite = true kkonganti@0: user_email = null kkonganti@0: } kkonganti@0: kkonganti@0: dag { kkonganti@0: enabled = true kkonganti@0: file = "${params.tracereportsdir}${params.fs}${params.pipeline}_dag.html" kkonganti@0: overwrite = true kkonganti@0: } kkonganti@0: kkonganti@0: report { kkonganti@0: enabled = true kkonganti@0: file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_report.html" kkonganti@0: overwrite = true kkonganti@0: } kkonganti@0: kkonganti@0: trace { kkonganti@0: enabled = true kkonganti@0: file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_trace.txt" kkonganti@0: overwrite = true kkonganti@0: } kkonganti@0: kkonganti@0: timeline { kkonganti@0: enabled = true kkonganti@0: file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_timeline.html" kkonganti@0: overwrite = true kkonganti@0: } kkonganti@0: