From 6a8325bd71231208d0dd80d9991c0625b521a4d9 Mon Sep 17 00:00:00 2001 From: James Fellows Yates Date: Wed, 12 May 2021 09:33:30 +0200 Subject: [PATCH 1/2] Remove space --- lib/NfcoreSchema.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NfcoreSchema.groovy b/lib/NfcoreSchema.groovy index 52ee73043..c2390f966 100644 --- a/lib/NfcoreSchema.groovy +++ b/lib/NfcoreSchema.groovy @@ -259,7 +259,7 @@ class NfcoreSchema { return new_params } - /* + /* * This method tries to read a JSON params file */ private static LinkedHashMap params_load(String json_schema) { From af37f1c69bcd3647fbd69deeff8ba3aef7457833 Mon Sep 17 00:00:00 2001 From: James Fellows Yates Date: Wed, 12 May 2021 10:14:32 +0200 Subject: [PATCH 2/2] Add reporting of location of multiqc run report on completeion --- CHANGELOG.md | 2 ++ main.nf | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e68441280..9e073ac3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### `Added` +- [https://github.com/nf-core/eager/issues/736] - Add printing of multiqc run report location on successful completion + ### `Fixed` ### `Dependencies` diff --git a/main.nf b/main.nf index 3473973ba..9745ed085 100644 --- a/main.nf +++ b/main.nf @@ -3128,6 +3128,7 @@ workflow.onComplete { if (workflow.success) { log.info "-${c_purple}[nf-core/eager]${c_green} Pipeline completed successfully${c_reset}-" + log.info "-${c_purple}[nf-core/eager]${c_green} MultiQC run report can be found in ${params.outdir}/multiqc ${c_reset}-" } else { checkHostname() log.info "-${c_purple}[nf-core/eager]${c_red} Pipeline completed with errors${c_reset}-"