1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 08:29:54 +00:00

Merge pull request #111 from drpatelh/master

Update awsbatch.config
This commit is contained in:
Harshil Patel 2019-12-12 14:32:59 +00:00 committed by GitHub
commit aadeea0ab9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 15 deletions

View file

@ -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

View file

@ -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.