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
|
//Nextflow config file for running on AWS batch
|
||||||
|
|
||||||
params {
|
params {
|
||||||
|
config_profile_description = 'AWSBATCH Cloud Profile'
|
||||||
|
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
||||||
|
config_profile_url = 'https://aws.amazon.com/batch/'
|
||||||
|
|
||||||
awsqueue = false
|
awsqueue = false
|
||||||
awsregion = 'eu-west-1'
|
awsregion = 'eu-west-1'
|
||||||
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
awscli = '/home/ec2-user/miniconda/bin/aws'
|
||||||
config_profile_description = 'AWSBATCH Cloud Profile'
|
|
||||||
config_profile_name = 'AWSBATCH'
|
|
||||||
config_profile_url = 'https://aws.amazon.com/batch/'
|
|
||||||
tracedir = './'
|
tracedir = './'
|
||||||
}
|
}
|
||||||
|
|
||||||
process.executor = 'awsbatch'
|
process.executor = 'awsbatch'
|
||||||
executor.awscli = '/home/ec2-user/miniconda/bin/aws'
|
process.queue = params.awsqueue
|
||||||
|
aws.region = params.awsregion
|
||||||
|
executor.awscli = params.awscli
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# nf-core/configs: awsbatch Configuration
|
# nf-core/configs: awsbatch Configuration
|
||||||
|
|
||||||
To be used with `awsbatch`.
|
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