1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-21 16:16:04 +00:00

Merge pull request #185 from ggabernet/master

awsbatch config update
This commit is contained in:
Gisela Gabernet 2021-03-28 20:59:40 +02:00 committed by GitHub
commit 71a97ba316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 3 deletions

View file

@ -7,10 +7,22 @@ params {
awsqueue = false
awsregion = 'eu-west-1'
awscli = '/home/ec2-user/miniconda/bin/aws'
tracedir = './'
}
timeline {
overwrite = true
}
report {
overwrite = true
}
trace {
overwrite = true
}
dag {
overwrite = true
}
process.executor = 'awsbatch'
process.queue = params.awsqueue
aws.region = params.awsregion
executor.awscli = params.awscli
aws.batch.cliPath = params.awscli

View file

@ -1,4 +1,6 @@
# nf-core/configs: awsbatch Configuration
To be used with `awsbatch`.
Custom queue, region and CLI path can be supplied with `params.awsqueue`, `params.awsregion`, `params.awscli`, respectively.
Custom queue and region can be supplied with `params.awsqueue`, `params.awsregion`, `params.awscli`, respectively.
Allow `overwrite` of `trace`, `timeline`, `report` and `dag` to allow resuming pipelines.