mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 00:26:03 +00:00
Version 1 of custom config with queue-switching for long jobs and module loading
This commit is contained in:
parent
30ca555060
commit
9957e9eea1
1 changed files with 31 additions and 0 deletions
31
conf/nu_genomics.config
Normal file
31
conf/nu_genomics.config
Normal file
|
@ -0,0 +1,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/'
|
||||
}
|
||||
|
||||
singularity {
|
||||
enabled = true
|
||||
autoMounts = true
|
||||
queue = {task.time < 48.h ? 'genomics' : 'genomicslong'}
|
||||
clusterOptions = '-A b1042'
|
||||
cacheDir = "/projects/b1042/singularity_cache"
|
||||
}
|
||||
|
||||
process {
|
||||
beforeScript = 'module load singularity/latest graphviz/2.40.1'
|
||||
executor = 'slurm'
|
||||
}
|
||||
|
||||
executor {
|
||||
submitRateLimit = '1sec'
|
||||
}
|
||||
|
||||
params {
|
||||
max_memory = 190.GB
|
||||
max_cpus = 40
|
||||
max_time = 240.h
|
||||
igenomes_base = "/projects/genomicsshare/igenomes" #pending
|
||||
|
||||
}
|
Loading…
Reference in a new issue