Skip to content
Snippets Groups Projects
Commit d6b59bfd authored by nservant's avatar nservant
Browse files

[MODIF] fix lint warning

parent 4b0a2fe3
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,9 @@ process SPLIT_COOLER_DUMP {
tuple val(meta), path("*.txt"), emit: matrix
path ("versions.yml"), emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
prefix = bedpe.toString() - ~/(\_balanced)?.bedpe$/
......
......@@ -110,7 +110,8 @@ params {
version = false
validate_params = true
show_hidden_params = false
schema_ignore_params = 'genomes'
schema_ignore_params = 'genomes,digest'
enable_conda = false
// Config options
......
......@@ -520,6 +520,12 @@
"description": "Show all params when using `--help`",
"hidden": true,
"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."
},
"enable_conda": {
"type": "boolean",
"description": "Run this workflow with Conda. You can also use '-profile conda' instead of providing this parameter.",
"hidden": true,
"fa_icon": "fas fa-bacon"
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment