2021-11-18 20:51:39 +00:00
|
|
|
//Nextflow config file for running on Azure batch
|
|
|
|
params {
|
2021-12-16 15:27:23 +00:00
|
|
|
config_profile_description = 'Azure BATCH Cloud Profile'
|
2021-11-18 20:51:39 +00:00
|
|
|
config_profile_contact = 'Venkat Malladi (@vsmalladi)'
|
|
|
|
config_profile_url = 'https://azure.microsoft.com/services/batch/'
|
|
|
|
|
2021-11-18 21:28:34 +00:00
|
|
|
az_location = 'westus2'
|
2021-11-18 20:51:39 +00:00
|
|
|
batch_name = false
|
|
|
|
batch_key = false
|
2021-11-18 23:52:51 +00:00
|
|
|
storage_name = false
|
|
|
|
sas_token = false
|
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
|
2021-11-18 21:28:34 +00:00
|
|
|
azure.storage.sasToken = params.sas_token
|
2021-11-18 20:51:39 +00:00
|
|
|
process.executor = 'azurebatch'
|