annotate 0.5.0/conf/base.config @ 2:463c7e606c77

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