mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-23 00:39:56 +00:00
14 lines
433 B
Text
14 lines
433 B
Text
|
//Nextflow config file for running on AWS batch
|
||
|
|
||
|
params {
|
||
|
config_profile_name = 'AWSBATCH'
|
||
|
config_profile_description = 'AWSBATCH Cloud Profile'
|
||
|
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
||
|
config_profile_url = 'https://aws.amazon.com/batch/'
|
||
|
}
|
||
|
|
||
|
aws.region = params.awsregion
|
||
|
process.executor = 'awsbatch'
|
||
|
process.queue = params.awsqueue
|
||
|
executor.awscli = '/home/ec2-user/miniconda/bin/aws'
|
||
|
params.tracedir = './'
|