1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-10 20:13:09 +00:00
nf-configs/conf/azurebatch.config
2021-11-18 15:15:23 -06:00

26 lines
719 B
Text

//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
storage_name = 'nextflow-test'
storage_key = 'not a real key'
}
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'