Skip to content

Commit b04a935

Browse files
authored
Merge pull request #922 from dialvarezs/review-suggestions
Apply #910 review suggestions
2 parents 053cd4d + 64caac5 commit b04a935

5 files changed

Lines changed: 4 additions & 7 deletions

File tree

modules/local/metabinner_bins/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ process METABINNER_BINS {
22
tag "$meta.id"
33
label 'process_low'
44

5+
// WARN: Version information not provided by tool on CLI. Please update version string below when bumping container versions.
56
conda "${moduleDir}/environment.yml"
67
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
78
'https://depot.galaxyproject.org/singularity/metabinner:1.4.4--hdfd78af_0' :

modules/local/metabinner_kmer/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ process METABINNER_KMER {
22
tag "$meta.id"
33
label 'process_low'
44

5+
// WARN: Version information not provided by tool on CLI. Please update version string below when bumping container versions.
56
conda "${moduleDir}/environment.yml"
67
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
78
'https://depot.galaxyproject.org/singularity/metabinner:1.4.4--hdfd78af_0' :

modules/local/metabinner_metabinner/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ process METABINNER_METABINNER {
22
tag "$meta.id"
33
label 'process_medium'
44

5+
// WARN: Version information not provided by tool on CLI. Please update version string below when bumping container versions.
56
conda "${moduleDir}/environment.yml"
67
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
78
'https://depot.galaxyproject.org/singularity/metabinner:1.4.4--hdfd78af_0' :

modules/local/metabinner_tooshort/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ process METABINNER_TOOSHORT {
22
tag "$meta.id"
33
label 'process_low'
44

5+
// WARN: Version information not provided by tool on CLI. Please update version string below when bumping container versions.
56
conda "${moduleDir}/environment.yml"
67
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
78
'https://depot.galaxyproject.org/singularity/metabinner:1.4.4--hdfd78af_0' :

subworkflows/local/utils_nfcore_mag_pipeline/main.nf

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -360,13 +360,6 @@ def validateInputParameters(hybrid) {
360360
error("[nf-core/mag] ERROR: Both --skip_binqc and --run_<bin_qc_tool_name> are specified! Invalid combination, please specify either --skip_binqc or --run_<bin_qc_tool_name>.")
361361
}
362362

363-
// Check if BUSCO parameters combinations are valid
364-
if (params.skip_binqc) {
365-
if (params.run_busco) {
366-
error("[nf-core/mag] ERROR: Both --skip_binqc and --run_busco specified! Invalid combination, please specify either --skip_binqc or --run_busco with --busco_db.")
367-
}
368-
}
369-
370363
if (!params.skip_binqc && params.run_busco) {
371364
if (params.busco_db && !params.busco_db_lineage) {
372365
log.warn('[nf-core/mag]: WARNING: You have supplied a database to --busco_db - BUSCO will run in offline mode. Please note that BUSCO may fail if you have an incomplete database and are running with --busco_db_lineage auto!')

0 commit comments

Comments
 (0)