annotate 0.3.0/conf/base.config @ 92:295c2597a475

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