-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
43 lines (38 loc) · 855 Bytes
/
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
params{
meta_csv=test_data/test_meta.csv
scan_params_config=conf/test_vit_scan_params.yml
}
process{
withLabel:pytorch{
container = '<wherever we end up storing containers>/<some sif for the pytorch portions of the project>'
}
}
profiles {
standard {
process.executor = "local"
}
slurm {
process.executor = "slurm"
process.queue = "compute"
process.clusterOptions = '-q batch'
process.module = "slurm"
process.cpus = 1
process.time = '12:00:00'
process.memory = '20 GB'
}
singularity {
process.module = 'singularity'
singularity.enabled = true
singularity.autoMounts = true
}
conda {
process.conda = "$baseDir/environment.yml"
}
test { includeConfig 'conf/test.config'}
}
executor {
$slurm {
submitRateLimit = "1 sec"
queueSize=35
}
}