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