Skip to content

Commit

Permalink
add conda enabled to config for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed May 31, 2024
1 parent 44dbf13 commit 3f09cbb
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,13 @@ def parsePipelineName(name) {
}

profiles {
conda {
process.conda = "$baseDir/environments/environment.yml"
if (params.cache){
conda.cacheDir = params.cache
}
}
conda {
conda.enabled = true
process.conda = "$baseDir/environments/environment.yml"
if (params.cache){
conda.cacheDir = params.cache
}
}
}

process {
Expand Down

0 comments on commit 3f09cbb

Please sign in to comment.