2018-12-04 15:58:33 +00:00
|
|
|
/*
|
2019-01-04 13:46:30 +00:00
|
|
|
* -------------------------------------------------------------
|
|
|
|
* Name: CFC
|
|
|
|
* Description: MENDEL cluster profile provided by nf-core/configs
|
|
|
|
* Contact person: Philipp H (@phue)
|
|
|
|
* URL: http://www.gmi.oeaw.ac.at/
|
|
|
|
* -------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2018-12-04 15:58:33 +00:00
|
|
|
* --------------------------------------------------------------------------------------
|
|
|
|
* Nextflow config file for the MENDEL cluster at the Gregor Mendel Institute in Vienna
|
|
|
|
* -------------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2019-01-04 13:46:30 +00:00
|
|
|
phue
|
|
|
|
|
2018-12-04 15:58:33 +00:00
|
|
|
singularity {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
beforeScript = 'module load Singularity'
|
|
|
|
executor = 'pbs'
|
|
|
|
clusterOptions = { "-P $params.project" }
|
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
|
|
|
max_time = 192.h
|
|
|
|
igenomesIgnore = true
|
2019-01-04 13:46:30 +00:00
|
|
|
|
|
|
|
config_profile_name = 'MENDEL'
|
|
|
|
config_profile_description = 'MENDEL cluster profile provided by nf-core/configs'
|
|
|
|
config_profile_contact = 'Philipp H (@phue)'
|
|
|
|
config_profile_url = 'http://www.gmi.oeaw.ac.at/'
|
2018-12-04 15:58:33 +00:00
|
|
|
}
|