mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 16:29:55 +00:00
28 lines
574 B
Text
28 lines
574 B
Text
|
//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 {
|
||
|
saveReference = true
|
||
|
igenomesIgnore = true
|
||
|
// Max resources requested by a normal node on genotoul.
|
||
|
max_memory = 120.GB
|
||
|
max_cpus = 48
|
||
|
max_time = 96.h
|
||
|
}
|
||
|
|