1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2025-01-05 05:52:07 -05:00
nf-configs/conf/eva.config

53 lines
1.3 KiB
Text
Raw Normal View History

2021-02-14 11:50:20 -05:00
//Profile config names for nf-core/configs
params {
config_profile_description = 'Generic MPI-EVA cluster(s) profile provided by nf-core/configs.'
config_profile_contact = 'James Fellows Yates (@jfy133)'
config_profile_url = 'https://eva.mpg.de'
}
// Preform work directory cleanup after a successful run
cleanup = true
singularity {
enabled = true
autoMounts = true
}
process {
executor = 'sge'
penv = 'smp'
queue = 'all.q'
2022-05-06 07:57:11 -04:00
clusterOptions = { "-S /bin/bash -V -j y -o output.sge -l h_vmem=${task.memory.toGiga()}G" }
2021-02-14 11:50:20 -05:00
}
executor {
queueSize = 8
}
profiles {
archgen {
params {
igenomes_base = "/projects1/public_data/igenomes/"
config_profile_description = 'MPI-EVA archgen profile, provided by nf-core/configs.'
max_memory = 256.GB
max_cpus = 32
2022-02-10 05:32:49 -05:00
max_time = 365.d
2021-02-14 11:50:20 -05:00
//Illumina iGenomes reference file path
}
process {
queue = { task.memory > 700.GB ? 'bigmem.q' : 'archgen.q' }
2022-05-06 07:57:11 -04:00
clusterOptions = { "-S /bin/bash -V -j y -o output.sge -l h_vmem=${task.memory.toGiga()}G" }
2021-02-14 11:50:20 -05:00
}
singularity {
2021-09-05 06:09:02 -04:00
cacheDir = "/mnt/archgen/tools/singularity/containers/"
2021-02-14 11:50:20 -05:00
}
}
// Profile to deactivate automatic cleanup of work directory after a successful run. Overwrites cleanup option.
debug {
cleanup = false
}
}