1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 22:12:03 +00:00
nf-configs/conf/azurebatch.config

26 lines
670 B
Text
Raw Normal View History

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/'
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
azure.storage.sasToken = params.sas_token
2021-11-18 20:51:39 +00:00
process.executor = 'azurebatch'