From 9334814afaffcd8e4a22ee84bd0515fa1586ceac Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Tue, 16 Apr 2024 16:18:31 +0100 Subject: [PATCH 1/2] Fix: save_trimmed_fail is a boolean save_trimmed_fail had conflicting settings for boolean and enum of two strings. This removes the enum option. --- nextflow_schema.json | 1 - 1 file changed, 1 deletion(-) diff --git a/nextflow_schema.json b/nextflow_schema.json index 0b1d176..1094e1c 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -44,7 +44,6 @@ "properties": { "save_trimmed_fail": { "type": "boolean", - "enum": ["true", "false"], "description": "save files that failed to pass trimming thresholds ending in `*.fail.fastq.gz`" }, "save_merged": { From ab26e8d206d34c1e187fc3827c725b0297ddbdb2 Mon Sep 17 00:00:00 2001 From: Daniel-VM Date: Mon, 22 Apr 2024 13:43:12 +0200 Subject: [PATCH 2/2] update CHANGELOG #125 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90f8cc2..4d5ce80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### `Fixed` +- [#125](https://github.com/nf-core/bacass/pull/125) - Fixed conflicting settings in save_trimmed_fail parameter. + ### `Dependencies` ### `Deprecated`