forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azurebatch_pools_Edv4.config
61 lines (57 loc) · 2.12 KB
/
azurebatch_pools_Edv4.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
nf-core/rnaseq Nextflow config file for Azure Batch pools
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines several Azure Batch pools with virtual machines from Edv4-series,
assigns pools to labels according to the requirements defined in base.config.
You might need to adjust vmCount and maxVmCount depending on your Batch account quotas.
Use as follows:
nextflow run nf-core/rnaseq -profile azurebatch
--input 'az://<Path to input file>' --outdir 'az://<Output directory>'
-w 'az://<Work directory>' [<Other pipeline parameters>]
----------------------------------------------------------------------------------------
*/
params {
config_profile_description = 'Azure Batch Edv4 pools profile'
config_profile_contact = 'Olesya Melnichenko (@olesya13) & Venkat Malladi (@vsmalladi)'
config_profile_url = 'https://azure.microsoft.com/services/batch/'
}
process {
queue = 'Standard_E2d_v4'
withLabel:process_low {queue = 'Standard_E2d_v4'}
withLabel:process_medium {queue = 'Standard_E8d_v4'}
withLabel:process_high {queue = 'Standard_E16d_v4'}
withLabel:process_high_memory {queue = 'Standard_E32d_v4'}
}
azure {
batch {
autoPoolMode = false
allowPoolCreation = true
pools {
Standard_E2d_v4 {
autoScale = true
vmType = 'Standard_E2d_v4'
vmCount = 2
maxVmCount = 20
}
Standard_E8d_v4 {
autoScale = true
vmType = 'Standard_E8d_v4'
vmCount = 2
maxVmCount = 20
}
Standard_E16d_v4 {
autoScale = true
vmType = 'Standard_E16d_v4'
vmCount = 2
maxVmCount = 20
}
Standard_E32d_v4 {
autoScale = true
vmType = 'Standard_E32d_v4'
vmCount = 2
maxVmCount = 10
}
}
}
}