Skip to content

Commit

Permalink
bucket changes
Browse files Browse the repository at this point in the history
  • Loading branch information
replikation committed Jan 10, 2024
1 parent d34d428 commit 10026f9
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,13 @@ params {
// runinfo
timeline {
enabled = true
overwrite = true
file = "${params.output}/runinfo/execution_timeline.html"
}

report {
enabled = true
overwrite = true
file = "${params.output}/runinfo/execution_report.html"
}

Expand Down Expand Up @@ -125,25 +127,28 @@ profiles {
ukj_cloud {
workDir = params.workdir
docker { enabled = true }
process { executor = 'google-batch' }
params { databases = 'gs://database_taxonomy/What-the-Phage' }
process {
executor = 'google-batch'
errorStrategy = { task.exitStatus in [10,14,143,137,104,134,139] ? 'retry' : 'terminate' }
maxRetries = 3
withLabel: noDocker { container = 'nanozoo/template:3.8--d089809' }
}
params { databases = 'gs://databases-case-grp/What-the-Phage' }
bucketDir = 'gs://case-tmp-dir/What-the-Phage'
google {
project = 'case-dev-302214'
location = 'europe-west4'
batch{
spot = true
bootDiskSize = 20.GB
zone = 'europe-west1-b'
}
}
includeConfig 'configs/container.config'
includeConfig 'configs/node.config'

// cloud error strategy
process.errorStrategy = { task.exitStatus in [10,14,143,137,104,134,139] ? 'retry' : 'terminate' }
process.maxRetries = 3
process { withLabel: noDocker { container = 'nanozoo/template:3.8--d089809' }}
}
}




//engines
docker {
Expand Down

0 comments on commit 10026f9

Please sign in to comment.