-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathshh.config
More file actions
38 lines (31 loc) · 826 Bytes
/
shh.config
File metadata and controls
38 lines (31 loc) · 826 Bytes
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
/*
* -------------------------------------------------------------
* Nextflow config file for use with Singularity at SHH Clusters
* -------------------------------------------------------------
* Defines basic usage limits and singularity image id.
*/
singularity {
enabled = true
cacheDir = "/projects1/users/$USER/nextflow/nf_cache/singularity/"
}
/*
* To be improved by process specific resource requests
* By default, take the medium queue, smaller processes might just go to short (e.g. multiqc or similar things)
*/
process {
executor = 'slurm'
queue = 'medium'
withName:makeFastaIndex {
queue = 'short'
time = 2.h
}
withName:makeSeqDict {
queue = 'short'
time = 2.h
}
}
params {
max_memory = 734.GB
max_cpus = 64
max_time = 48.h
}