2021-11-18 20:51:39 +00:00
|
|
|
//Nextflow config file for running on Azure batch
|
|
|
|
params {
|
|
|
|
config_profile_description = 'AWSBATCH Cloud Profile'
|
|
|
|
config_profile_contact = 'Venkat Malladi (@vsmalladi)'
|
|
|
|
config_profile_url = 'https://azure.microsoft.com/services/batch/'
|
|
|
|
|
|
|
|
az_location = 'westeurope'
|
|
|
|
batch_name = false
|
|
|
|
batch_key = false
|
2021-11-18 21:15:23 +00:00
|
|
|
storage_name = 'nextflow-test'
|
2021-11-18 21:20:59 +00:00
|
|
|
storage_key = 'aepeL0FVpPKAM7i9F1F68p9n//0zi+xE1vNStbHD3sVJjqfGqtDd007UxaTUaCqaClHLWEj8JG2HV0AnTLVDaA=='
|
2021-11-18 20:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
docker {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
azure.batch.location = params.az_location
|
|
|
|
azure.batch.accountName = params.batch_name
|
|
|
|
azure.batch.accountKey = params.batch_key
|
|
|
|
azure.batch.autoPoolMode = true
|
|
|
|
azure.storage.accountName = params.storage_name
|
|
|
|
azure.storage.accountKey = params.storage_key
|
|
|
|
workDir = 'az://work'
|
|
|
|
process.executor = 'azurebatch'
|