From 3ccf8ec50c154520f7564a26f36a82b863bb79b8 Mon Sep 17 00:00:00 2001 From: atrigila <18577080+atrigila@users.noreply.github.com> Date: Thu, 24 Oct 2024 14:40:39 +0000 Subject: [PATCH] add downstream csv options group --- nextflow_schema.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/nextflow_schema.json b/nextflow_schema.json index f136e2fa..a890d605 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -101,10 +101,20 @@ "description": "Demultiplexer to use.", "fa_icon": "fas fa-microscope", "default": "bclconvert" - }, + } + } + }, + "downstream_csv_options": { + "title": "Downstream CSV options", + "type": "object", + "description": "Options to customize downstream csv creation", + "default": "", + "properties": { "strandedness": { "type": "string", - "default": "auto" + "default": "auto", + "description": "Specifies the strandedness of RNA-Seq data for downstream sample sheet generation. This parameter does not affect the demultiplexing process but is used to generate the appropriate field in the nf-core/rnaseq samplesheet. Accepted values are 'unstranded', 'auto', 'forward', or 'reverse'.", + "fa_icon": "fas fa-arrows-alt-v" } } }, @@ -277,6 +287,9 @@ { "$ref": "#/$defs/demultiplex_options" }, + { + "$ref": "#/$defs/downstream_csv_options" + }, { "$ref": "#/$defs/institutional_config_options" },