mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 16:29:55 +00:00
fix tests
This commit is contained in:
parent
a283c5b7c4
commit
75c1fd5cd9
1 changed files with 6 additions and 4 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_name = 'AWSBATCH'
|
awsqueue = ''
|
||||||
config_profile_description = 'AWSBATCH Cloud Profile'
|
awsregion = ''
|
||||||
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
||||||
|
config_profile_description = 'AWSBATCH Cloud Profile'
|
||||||
|
config_profile_name = 'AWSBATCH'
|
||||||
config_profile_url = 'https://aws.amazon.com/batch/'
|
config_profile_url = 'https://aws.amazon.com/batch/'
|
||||||
|
tracedir = './'
|
||||||
}
|
}
|
||||||
|
|
||||||
aws.region = params.awsregion
|
aws.region = params.awsregion
|
||||||
process.executor = 'awsbatch'
|
process.executor = 'awsbatch'
|
||||||
process.queue = params.awsqueue
|
process.queue = params.awsqueue
|
||||||
executor.awscli = '/home/ec2-user/miniconda/bin/aws'
|
executor.awscli = '/home/ec2-user/miniconda/bin/aws'
|
||||||
params.tracedir = './'
|
|
Loading…
Reference in a new issue