From 05e4f2edf215e42a827ed862fb361d33afe7e48d Mon Sep 17 00:00:00 2001 From: LilyAnderssonLee Date: Thu, 28 Nov 2024 09:25:12 +0100 Subject: [PATCH] Move the modules.config line below the base.config line --- CHANGELOG.md | 2 +- nextflow.config | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51c72ff5..72b253e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## v1.2.1 - Bouncy Basenji Patch [2024-11-27] +## v1.2.1 - Bouncy Basenji Patch [2024-11-28] ### `Added` diff --git a/nextflow.config b/nextflow.config index 77739126..f37fa63f 100644 --- a/nextflow.config +++ b/nextflow.config @@ -193,6 +193,8 @@ params { // Load base.config by default for all pipelines includeConfig 'conf/base.config' +// Load modules.config for DSL2 module specific options +includeConfig 'conf/modules.config' profiles { debug { @@ -414,6 +416,3 @@ validation { afterText = validation.help.afterText } } - -// Load modules.config for DSL2 module specific options -includeConfig 'conf/modules.config'