forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nu_genomics.config
31 lines (28 loc) · 926 Bytes
/
nu_genomics.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
//Profile config names for nf-core/configs
params
{
config_profile_description = 'Northwestern University Quest HPC (Genomics Nodes) config provided by nf-core/configs'
config_profile_contact = 'Rogan Grant / Janna Nugent (@RoganGrant, @NUjon)'
config_profile_url = 'https://www.it.northwestern.edu/research/user-services/quest/'
max_memory = 190.GB
max_cpus = 40
max_time = 240.h
igenomes_base = "/projects/genomicsshare/AWS_iGenomes/references"
}
singularity
{
enabled = true
autoMounts = true
cacheDir = "/projects/b1042/singularity_cache"
}
process
{
beforeScript = 'module purge; module load singularity/latest; module load graphviz/2.40.1; module load java/jdk11.0.10'
executor = 'slurm'
queue = {task.memory >= 190.GB ? 'genomics-himem' : task.time >= 48.h ? 'genomicslong' : 'genomics'}
clusterOptions = '-A b1042'
}
executor
{
submitRateLimit = '1sec'
}