Skip to content

Commit d6b59bf

Browse files
committed
[MODIF] fix lint warning
1 parent 4b0a2fe commit d6b59bf

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

modules/local/split_cooler_dump.nf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ process SPLIT_COOLER_DUMP {
1414
tuple val(meta), path("*.txt"), emit: matrix
1515
path ("versions.yml"), emit: versions
1616

17+
when:
18+
task.ext.when == null || task.ext.when
19+
1720
script:
1821
def args = task.ext.args ?: ''
1922
prefix = bedpe.toString() - ~/(\_balanced)?.bedpe$/

nextflow.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ params {
110110
version = false
111111
validate_params = true
112112
show_hidden_params = false
113-
schema_ignore_params = 'genomes'
113+
schema_ignore_params = 'genomes,digest'
114+
enable_conda = false
114115

115116

116117
// Config options

nextflow_schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,12 @@
520520
"description": "Show all params when using `--help`",
521521
"hidden": true,
522522
"help_text": "By default, parameters set as _hidden_ in the schema are not shown on the command line when a user runs with `--help`. Specifying this option will tell the pipeline to show all parameters."
523+
},
524+
"enable_conda": {
525+
"type": "boolean",
526+
"description": "Run this workflow with Conda. You can also use '-profile conda' instead of providing this parameter.",
527+
"hidden": true,
528+
"fa_icon": "fas fa-bacon"
523529
}
524530
}
525531
}

0 commit comments

Comments
 (0)