forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crg.config
39 lines (39 loc) · 1.43 KB
/
crg.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
profiles {
crg {
params {
config_profile_contact = 'Jose Espinosa-Carrasco (@joseespinosa)'
config_profile_description = 'nf-core/proteinfold CRG profile provided by nf-core/configs'
}
executor.name = 'crg'
process {
queue = 'short-centos79,long-centos79'
withName: 'ARIA2' {
time = '12h'
}
withName: 'RUN_ALPHAFOLD2|RUN_ALPHAFOLD2_PRED|RUN_ALPHAFOLD2_MSA' {
cpus = 1
memory = "30 GB"
queue = params.use_gpu ? 'gpu' : 'long-centos79'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '' ) }
}
withName: 'COLABFOLD_BATCH' {
cpus = 1
memory = "30 GB"
queue = params.use_gpu ? 'gpu' : 'long-centos79'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '' ) }
}
withName: 'MMSEQS_COLABFOLDSEARCH' {
queue = 'mem_512'
memory = "100 GB"
cpus = 8
time = '12h'
}
withName: 'RUN_ESMFOLD' {
cpus = 1
memory = "30 GB"
queue = params.use_gpu ? 'gpu' : 'long-centos79'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '' ) }
}
}
}
}