mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
commit
aadeea0ab9
2 changed files with 17 additions and 15 deletions
|
@ -1,14 +1,16 @@
|
|||
//Nextflow config file for running on AWS batch
|
||||
|
||||
params {
|
||||
awsqueue = false
|
||||
awsregion = 'eu-west-1'
|
||||
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
||||
config_profile_description = 'AWSBATCH Cloud Profile'
|
||||
config_profile_name = 'AWSBATCH'
|
||||
config_profile_url = 'https://aws.amazon.com/batch/'
|
||||
tracedir = './'
|
||||
}
|
||||
|
||||
process.executor = 'awsbatch'
|
||||
executor.awscli = '/home/ec2-user/miniconda/bin/aws'
|
||||
//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'
|
||||
tracedir = './'
|
||||
}
|
||||
|
||||
process.executor = 'awsbatch'
|
||||
process.queue = params.awsqueue
|
||||
aws.region = params.awsregion
|
||||
executor.awscli = params.awscli
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# nf-core/configs: awsbatch Configuration
|
||||
|
||||
To be used with `awsbatch`.
|
||||
Custom queue and region can be entered with `params.awsqueue` and `params.region` respectively.
|
||||
Custom queue, region and CLI path can be supplied with `params.awsqueue`, `params.awsregion`, `params.awscli`, respectively.
|
||||
|
|
Loading…
Reference in a new issue