-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
50 lines (40 loc) · 1.04 KB
/
nextflow.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
// Profiles
process {
memory = { 32.GB * task.attempt }
cpus = 8
}
profiles {
docker {
docker.enabled = true
docker.userEmulation = true
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
test {
params {
config = "https://raw.githubusercontent.com/Sage-Bionetworks/agora-data-tools/dev/test_config.yaml"
}
}
prod {
params {
config = "https://raw.githubusercontent.com/Sage-Bionetworks/agora-data-tools/dev/config.yaml"
}
}
modelad_test {
params {
config = "https://raw.githubusercontent.com/Sage-Bionetworks/agora-data-tools/dev/modelad_test_config.yaml"
}
}
modelad_prod {
params {
config = "https://raw.githubusercontent.com/Sage-Bionetworks/agora-data-tools/dev/modelad_config.yaml"
}
}
debug {
process {
debug = true
}
}
}