mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-14 05:33:09 +00:00
feat(utd): Add initial sysbio config
This commit is contained in:
parent
9cca0eaf85
commit
2b58a62a9b
1 changed files with 38 additions and 0 deletions
38
conf/utd_sysbio.config
Normal file
38
conf/utd_sysbio.config
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
//Profile config names for nf-core/configs
|
||||||
|
params {
|
||||||
|
config_profile_description = 'University of Texas at Dallas HPC cluster profile provided by nf-core/configs'
|
||||||
|
config_profile_contact = 'Edmund Miller(@emiller88)'
|
||||||
|
config_profile_url = 'http://docs.oithpc.utdallas.edu/'
|
||||||
|
singularity_cache_dir = '/scratch/applied-genomics/singularity'
|
||||||
|
}
|
||||||
|
|
||||||
|
env {
|
||||||
|
TMPDIR = '/home/$USER/scratch/tmp'
|
||||||
|
}
|
||||||
|
|
||||||
|
singularity {
|
||||||
|
enabled = true
|
||||||
|
envWhitelist='SINGULARITY_BINDPATH'
|
||||||
|
autoMounts = true
|
||||||
|
cacheDir = params.singularity_cache_dir
|
||||||
|
}
|
||||||
|
|
||||||
|
process {
|
||||||
|
beforeScript = 'module load singularity/3.4.1'
|
||||||
|
executor = 'slurm'
|
||||||
|
queue = { task.memory >= 30.GB && task.cpu <= 16 ? 'normal': 'smallmem' }
|
||||||
|
|
||||||
|
|
||||||
|
withLabel:process_high {
|
||||||
|
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
|
||||||
|
memory = { check_max( 62.GB * task.attempt, 'memory' ) }
|
||||||
|
time = { check_max( 16.h * task.attempt, 'time' ) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
params {
|
||||||
|
igenomes_base = '/scratch/applied-genomics/references/iGenomes/references/'
|
||||||
|
max_memory = 90.GB
|
||||||
|
max_cpus = 16
|
||||||
|
max_time = 96.h
|
||||||
|
}
|
Loading…
Reference in a new issue