Mercurial > repos > kkonganti > cfsan_bettercallsal
annotate 0.5.0/conf/base.config @ 1:365849f031fd
"planemo upload"
author | kkonganti |
---|---|
date | Mon, 05 Jun 2023 18:48:51 -0400 |
parents | |
children |
rev | line source |
---|---|
kkonganti@1 | 1 plugins { |
kkonganti@1 | 2 id 'nf-amazon' |
kkonganti@1 | 3 } |
kkonganti@1 | 4 |
kkonganti@1 | 5 params { |
kkonganti@1 | 6 fs = File.separator |
kkonganti@1 | 7 cfsanpipename = 'CPIPES' |
kkonganti@1 | 8 center = 'CFSAN, FDA.' |
kkonganti@1 | 9 libs = "${projectDir}${params.fs}lib" |
kkonganti@1 | 10 modules = "${projectDir}${params.fs}modules" |
kkonganti@1 | 11 projectconf = "${projectDir}${params.fs}conf" |
kkonganti@1 | 12 assetsdir = "${projectDir}${params.fs}assets" |
kkonganti@1 | 13 subworkflows = "${projectDir}${params.fs}subworkflows" |
kkonganti@1 | 14 workflows = "${projectDir}${params.fs}workflows" |
kkonganti@1 | 15 workflowsconf = "${workflows}${params.fs}conf" |
kkonganti@1 | 16 routines = "${libs}${params.fs}routines" |
kkonganti@1 | 17 toolshelp = "${libs}${params.fs}help" |
kkonganti@1 | 18 swmodulepath = "${params.fs}nfs${params.fs}software${params.fs}modules" |
kkonganti@1 | 19 tracereportsdir = "${launchDir}${params.fs}${cfsanpipename}-${params.pipeline}${params.fs}nextflow-reports" |
kkonganti@1 | 20 dummyfile = "${projectDir}${params.fs}assets${params.fs}dummy_file.txt" |
kkonganti@1 | 21 dummyfile2 = "${projectDir}${params.fs}assets${params.fs}dummy_file2.txt" |
kkonganti@1 | 22 max_cpus = 10 |
kkonganti@1 | 23 linewidth = 80 |
kkonganti@1 | 24 pad = 32 |
kkonganti@1 | 25 pipeline = null |
kkonganti@1 | 26 help = null |
kkonganti@1 | 27 input = null |
kkonganti@1 | 28 output = null |
kkonganti@1 | 29 metadata = null |
kkonganti@1 | 30 publish_dir_mode = "copy" |
kkonganti@1 | 31 publish_dir_overwrite = true |
kkonganti@1 | 32 user_email = null |
kkonganti@1 | 33 } |
kkonganti@1 | 34 |
kkonganti@1 | 35 dag { |
kkonganti@1 | 36 enabled = true |
kkonganti@1 | 37 file = "${params.tracereportsdir}${params.fs}${params.pipeline}_dag.html" |
kkonganti@1 | 38 overwrite = true |
kkonganti@1 | 39 } |
kkonganti@1 | 40 |
kkonganti@1 | 41 report { |
kkonganti@1 | 42 enabled = true |
kkonganti@1 | 43 file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_report.html" |
kkonganti@1 | 44 overwrite = true |
kkonganti@1 | 45 } |
kkonganti@1 | 46 |
kkonganti@1 | 47 trace { |
kkonganti@1 | 48 enabled = true |
kkonganti@1 | 49 file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_trace.txt" |
kkonganti@1 | 50 overwrite = true |
kkonganti@1 | 51 } |
kkonganti@1 | 52 |
kkonganti@1 | 53 timeline { |
kkonganti@1 | 54 enabled = true |
kkonganti@1 | 55 file = "${params.tracereportsdir}${params.fs}${params.pipeline}_exec_timeline.html" |
kkonganti@1 | 56 overwrite = true |
kkonganti@1 | 57 } |
kkonganti@1 | 58 |