Skip to content

Commit 083cddb

Browse files
committed
fix: repair malformed nextflow_schema.json
Missing closing brace for publish_dir_mode property caused JSON parse error during nf-schema validation.
1 parent 4785d34 commit 083cddb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

nextflow_schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@
104104
"description": "Method used to save pipeline results to output directory.",
105105
"help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.",
106106
"fa_icon": "fas fa-copy",
107-
"enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"],
107+
"enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"]
108+
},
108109
"max_multiqc_email_size": {
109110
"type": "string",
110111
"description": "File size limit when attaching MultiQC reports to summary emails.",

0 commit comments

Comments
 (0)