annotate 0.6.1/conf/base.config @ 15:1972677994a6

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