mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-21 16:16:04 +00:00
commit
71a97ba316
2 changed files with 17 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue