1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 14:02:05 +00:00
nf-configs/conf/medair.config

47 lines
1.3 KiB
Text
Raw Normal View History

2022-06-30 09:42:36 +00:00
//Profile config names for nf-core/configs
params {
config_profile_description = 'Cluster profile for medair (local cluster of Clinical Genomics Gothenburg)'
2022-08-08 14:11:55 +00:00
config_profile_contact = 'Clinical Genomics, Gothenburg (cgg-rd@gu.se, cgg-it@gu.se)'
config_profile_url = 'https://www.scilifelab.se/units/clinical-genomics-goteborg/'
2022-06-30 09:42:36 +00:00
}
//Nextflow parameters
singularity {
enabled = true
2022-07-06 11:59:35 +00:00
cacheDir = "/apps/bio/dependencies/nf-core/singularities"
2022-06-30 09:42:36 +00:00
}
profiles {
wgs {
process {
queue = 'wgs.q'
executor = 'sge'
penv = 'mpi'
2022-06-30 09:42:36 +00:00
process.clusterOptions = '-l excl=1'
params.max_cpus = 40
params.max_time = 48.h
params.max_memory = 128.GB
2022-06-30 09:42:36 +00:00
}
}
production {
process {
queue = 'production.q'
executor = 'sge'
penv = 'mpi'
2022-06-30 09:42:36 +00:00
process.clusterOptions = '-l excl=1'
params.max_cpus = 40
params.max_time = 480.h
params.max_memory = 128.GB
2022-06-30 09:42:36 +00:00
}
}
}
//Specific parameter for pipelines that can use Sentieon (e.g. nf-core/sarek, nf-core/raredisease)
process {
withLabel:'sentieon' {
container = "/apps/bio/singularities/sentieon-211204-peta.simg"
}
}