Skip to content

Commit

Permalink
Merge pull request #257 from replikation/MarieLataretu/issue256
Browse files Browse the repository at this point in the history
added timestamp to reports; solves #256
  • Loading branch information
replikation authored Nov 10, 2023
2 parents d103bcd + 52f5eff commit 800799b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,15 @@ params {
}

// runinfo
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
timeline {
enabled = true
file = "${params.output}/${params.runinfodir}/execution_timeline.html"
file = "${params.output}/${params.runinfodir}/execution_timeline_${trace_timestamp}.html"
}

report {
enabled = true
file = "${params.output}/${params.runinfodir}/execution_report.html"
file = "${params.output}/${params.runinfodir}/execution_report_${trace_timestamp}.html"
}


Expand Down

0 comments on commit 800799b

Please sign in to comment.