Skip to content

Commit

Permalink
Merge pull request #310 from FriederikeHanssen/schema
Browse files Browse the repository at this point in the history
Replace [] with null as default
  • Loading branch information
maxulysse authored Feb 5, 2025
2 parents d5ed1e4 + 4cdc76b commit 957ea27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ params {
remove_adapter = true // [true, false]

// Options: tooling
skip_tools = [] // list [fastp, fastqc, kraken, multiqc, checkqc, falco, md5sum, samshee]
skip_tools = null // list [fastp, fastqc, kraken, multiqc, checkqc, falco, md5sum, samshee]

// seqtk sample options
sample_size = 100000
Expand All @@ -36,7 +36,7 @@ params {
strandedness = "auto" // enum string [auto, reverse, forward, unstranded]

// Options: CheckQC
checkqc_config = [] // file .yaml
checkqc_config = null // file .yaml

// MultiQC options
multiqc_config = null
Expand Down
5 changes: 2 additions & 3 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
},
"skip_tools": {
"type": "string",
"default": "[]",
"description": "Comma-separated list of tools to skip (fastp,fastqc,kraken,multiqc,checkqc,falco,md5sum,samshee)"
},
"sample_size": {
Expand Down Expand Up @@ -175,9 +174,9 @@
"properties": {
"checkqc_config": {
"type": "string",
"default": "[]",
"description": "Path to the checkqc config yml file.",
"fa_icon": "far fa-check-square"
"fa_icon": "far fa-check-square",
"format": "file-path"
}
}
},
Expand Down

0 comments on commit 957ea27

Please sign in to comment.