annotate 0.4.0/conf/base.config @ 104:17890124001d

"planemo upload"
author kkonganti
date Sun, 28 Aug 2022 00:37:10 -0400
parents ce6d9548fe89
children
rev   line source
kkonganti@101 1 params {
kkonganti@101 2 fs = File.separator
kkonganti@101 3 cfsanpipename = 'CPIPES'
kkonganti@101 4 center = 'CFSAN, FDA.'
kkonganti@101 5 libs = "${projectDir}${params.fs}lib"
kkonganti@101 6 modules = "${projectDir}${params.fs}modules"
kkonganti@101 7 projectconf = "${projectDir}${params.fs}conf"
kkonganti@101 8 assetsdir = "${projectDir}${params.fs}assets"
kkonganti@101 9 subworkflows = "${projectDir}${params.fs}subworkflows"
kkonganti@101 10 workflows = "${projectDir}${params.fs}workflows"
kkonganti@101 11 workflowsconf = "${workflows}${params.fs}conf"
kkonganti@101 12 routines = "${libs}${params.fs}routines"
kkonganti@101 13 toolshelp = "${libs}${params.fs}help"
kkonganti@101 14 swmodulepath = "${params.fs}nfs${params.fs}software${params.fs}modules"
kkonganti@101 15 tracereportsdir = "${launchDir}${params.fs}${cfsanpipename}-${params.pipeline}${params.fs}nextflow-reports"
kkonganti@101 16 dummyfile = "${projectDir}${params.fs}assets${params.fs}dummy_file.txt"
kkonganti@101 17 dummyfile2 = "${projectDir}${params.fs}assets${params.fs}dummy_file2.txt"
kkonganti@101 18 linewidth = 80
kkonganti@101 19 pad = 32
kkonganti@101 20 pipeline = null
kkonganti@101 21 help = null
kkonganti@101 22 input = null
kkonganti@101 23 output = null
kkonganti@101 24 metadata = null
kkonganti@101 25 publish_dir_mode = "copy"
kkonganti@101 26 publish_dir_overwrite = true
kkonganti@101 27 user_email = null
kkonganti@101 28 }
kkonganti@101 29
kkonganti@101 30 dag {
kkonganti@101 31 enabled = true
kkonganti@101 32 file = "${params.tracereportsdir}${params.fs}${params.pipeline}_dag.html"
kkonganti@101 33 }
kkonganti@101 34
kkonganti@101 35 report {
kkonganti@101 36 enabled = true
kkonganti@101 37 file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_report.html"
kkonganti@101 38 }
kkonganti@101 39
kkonganti@101 40 trace {
kkonganti@101 41 enabled = true
kkonganti@101 42 file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_trace.txt"
kkonganti@101 43 }
kkonganti@101 44
kkonganti@101 45 timeline {
kkonganti@101 46 enabled = true
kkonganti@101 47 file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_timeline.html"
kkonganti@101 48 }
kkonganti@101 49