Skip to content

Commit

Permalink
Exposes as param executor, errorStrategy
Browse files Browse the repository at this point in the history
  • Loading branch information
cgpu committed Jan 21, 2021
1 parent a2867de commit a85a0d0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
params {
executor = 'ignite'
errorStrategy = 'ignore'
processA_cpus = 1
echo = false
s3Location = 's3://lifebit-featured-datasets/pipelines/spammer-nf/input_files'
fileSuffix = ''
repsProcessA = 10
processAWriteToDiskMb = 10
processATimeRange = "1-2"
Expand All @@ -21,7 +24,7 @@ docker.enabled = true

process {
cpus = 1
errorStrategy = 'retry'
errorStrategy = params.errorStrategy
container = "quay.io/lifebitai/ubuntu:18.10"

withName: processA {
Expand All @@ -31,7 +34,6 @@ process {
}

executor {
name = 'ignite'
name = params.executor
queueSize = 1000
pollInterval = '30sec'
}

0 comments on commit a85a0d0

Please sign in to comment.