2019-12-12 13:44:37 +00:00
|
|
|
//Nextflow config file for running on AWS batch
|
|
|
|
params {
|
|
|
|
config_profile_description = 'AWSBATCH Cloud Profile'
|
|
|
|
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
|
|
|
config_profile_url = 'https://aws.amazon.com/batch/'
|
|
|
|
|
|
|
|
awsqueue = false
|
|
|
|
awsregion = 'eu-west-1'
|
|
|
|
awscli = '/home/ec2-user/miniconda/bin/aws'
|
2020-11-09 21:41:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
timeline {
|
|
|
|
overwrite = true
|
|
|
|
}
|
|
|
|
report {
|
|
|
|
overwrite = true
|
|
|
|
}
|
|
|
|
trace {
|
|
|
|
overwrite = true
|
|
|
|
}
|
|
|
|
dag {
|
|
|
|
overwrite = true
|
2019-12-12 13:44:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
process.executor = 'awsbatch'
|
|
|
|
process.queue = params.awsqueue
|
|
|
|
aws.region = params.awsregion
|
2021-02-09 21:06:59 +00:00
|
|
|
aws.batch.cliPath = params.awscli
|