2019-11-25 13:54:25 +00:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
|
|
|
config_profile_description = 'The Genotoul cluster profile'
|
|
|
|
config_profile_contact = 'support.bioinfo.genotoul@inra.fr'
|
|
|
|
config_profile_url = 'http://bioinfo.genotoul.fr/'
|
|
|
|
}
|
|
|
|
|
|
|
|
singularity {
|
|
|
|
// need one image per execution
|
|
|
|
enabled = true
|
|
|
|
runOptions = '-B /bank -B /work2 -B /work -B /save -B /home'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
executor = 'slurm'
|
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
2019-11-26 13:50:05 +00:00
|
|
|
save_reference = true
|
2019-11-26 13:49:47 +00:00
|
|
|
igenomes_ignore = true
|
2019-11-26 15:09:08 +00:00
|
|
|
igenomesIgnore = true //deprecated
|
2019-11-25 13:54:25 +00:00
|
|
|
// Max resources requested by a normal node on genotoul.
|
|
|
|
max_memory = 120.GB
|
|
|
|
max_cpus = 48
|
|
|
|
max_time = 96.h
|
|
|
|
}
|