Skip to content

Commit

Permalink
add timestamp fix #9
Browse files Browse the repository at this point in the history
  • Loading branch information
Juke34 committed Jan 13, 2025
1 parent cf75192 commit 0834110
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@ resume = true

timeline {
enabled = true
file = "${params.pipeline_report}/execution_timeline.html"
file = "${params.pipeline_report}/execution_timeline_${new Date().format('yyyyMMddHHmm')}.html"
}

report {
enabled = true
file = "${params.pipeline_report}/execution_report.html"
file = "${params.pipeline_report}/execution_report_${new Date().format('yyyyMMddHHmm')}.html"
}

trace {
enabled = true
file = "${params.pipeline_report}/execution_trace.txt"
file = "${params.pipeline_report}/execution_trace_${new Date().format('yyyyMMddHHmm')}.txt"
}

dag {
Expand Down

0 comments on commit 0834110

Please sign in to comment.