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