From 3dba4050dc4896c0bfb42a8dc5282bbfe897b2cf Mon Sep 17 00:00:00 2001 From: Harry Hung <4848896+HarryHung@users.noreply.github.com> Date: Wed, 13 Mar 2024 16:15:41 +0000 Subject: [PATCH] Update schema for --assembler_thread --- nextflow_schema.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/nextflow_schema.json b/nextflow_schema.json index df08dff..039c536 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -133,6 +133,11 @@ "unicycler" ] }, + "assembler_thread": { + "type": "integer", + "description": "Number of threads used by the assembler. 0 means all available.", + "hidden": true + }, "min_contig_length": { "type": "integer", "description": "Minimum legnth of contig to be included in the assembly.", @@ -142,7 +147,8 @@ }, "required": [ "assembler", - "min_contig_length" + "min_contig_length", + "assembler_thread" ] }, "mapping": {