Skip to content

Commit

Permalink
Merge pull request #1211 from nf-core/maxulysse-patch-2
Browse files Browse the repository at this point in the history
Update nextflow.config
  • Loading branch information
ewels authored Nov 16, 2021
2 parents f58077e + b35d1f2 commit 14abb1b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions nf_core/pipeline-template/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,6 @@ try {
System.err.println("WARNING: Could not load nf-core/config profiles: ${params.custom_config_base}/nfcore_custom.config")
}

// Load igenomes.config if required
if (!params.igenomes_ignore) {
includeConfig 'conf/igenomes.config'
} else {
params.genomes = [:]
}

profiles {
debug { process.beforeScript = 'echo $HOSTNAME' }
conda {
Expand Down Expand Up @@ -125,6 +118,13 @@ profiles {
test_full { includeConfig 'conf/test_full.config' }
}

// Load igenomes.config if required
if (!params.igenomes_ignore) {
includeConfig 'conf/igenomes.config'
} else {
params.genomes = [:]
}

// Export these variables to prevent local Python/R libraries from conflicting with those in the container
env {
PYTHONNOUSERSITE = 1
Expand Down

0 comments on commit 14abb1b

Please sign in to comment.