Skip to content

Commit

Permalink
fix: nextflow.config edited to work for all Nextflow versions
Browse files Browse the repository at this point in the history
Former-commit-id: 2963a0fb4279036368a8cfc88310add2702b94e4
  • Loading branch information
CarlosLopezElorduy committed Jul 27, 2022
1 parent 0abbaf1 commit 7564e7c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ singularity {
cacheDir = params.containers
}

profiles {
bbglab {
includeConfig 'config/bbglab.conf'
}
local {
includeConfig 'config/local.conf'
}
}

process {
cpus = 1
errorStrategy = (params.debug)? 'ignore' : 'terminate'
Expand Down Expand Up @@ -84,15 +93,6 @@ process {
}
}

profiles {
bbglab {
includeConfig 'config/bbglab.conf'
}
local {
includeConfig 'config/local.conf'
}
}

timeline {
enabled = true
}
Expand Down

0 comments on commit 7564e7c

Please sign in to comment.