-
Notifications
You must be signed in to change notification settings - Fork 356
Expand file tree
/
Copy pathbrain.config
More file actions
72 lines (63 loc) · 3.61 KB
/
brain.config
File metadata and controls
72 lines (63 loc) · 3.61 KB
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
62
63
64
65
66
67
68
69
70
71
// ─────────────────────────────────────────────────────────────────────────────
// Global Parameters
// ─────────────────────────────────────────────────────────────────────────────
params {
config_profile_name = 'Brain Image Library Analysis Ecosystem'
config_profile_description = 'A public resource enabling researchers to deposit, analyze, mine, share, and interact with large brain image datasets.'
config_profile_url = 'https://www.brainimagelibrary.org'
config_profile_contact = 'Ivan Cao-Berg (@icaoberg)'
// General resource boundaries (used in profile as well)
max_memory = 2.9.Tb
max_cpus = 80
max_time = 48.h
// Ignore iGenomes when not needed
igenomes_ignore = true
igenomesIgnore = true
}
// ─────────────────────────────────────────────────────────────────────────────
// Singularity Configuration
// ─────────────────────────────────────────────────────────────────────────────
singularity {
enabled = true
autoMounts = true
runOptions = '''
--home $HOME:/bil/users/$USER \
--bind /scratch \
--bind /local
'''
}
// ─────────────────────────────────────────────────────────────────────────────
// Executor Configuration
// ─────────────────────────────────────────────────────────────────────────────
executor {
queueSize = 10
submitRateLimit = '5 sec'
}
// ─────────────────────────────────────────────────────────────────────────────
// Profiles
// ─────────────────────────────────────────────────────────────────────────────
profiles {
compute {
params {
config_profile_name = 'BIL - General Computing Partition'
config_profile_description = 'Brain Image Library Analysis Ecosystem at the Pittsburgh Supercomputing Center'
config_profile_url = 'https://www.brainimagelibrary.org'
config_profile_contact = 'Ivan Cao-Berg (@icaoberg)'
}
process {
executor = 'slurm'
queue = 'compute'
queueSize = 10
clusterOptions = '--qos=normal'
// Set scratch directory to /local
scratch = true
scratchMount = '/local'
// Default per-process limits
resourceLimits = [
memory: 128.Gb,
cpus : 16,
time : 4.h
]
}
}
}