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