2018-11-23 16:33:22 +00:00
|
|
|
/*
|
|
|
|
* -------------------------------------------------
|
|
|
|
* nfcore custom profile Nextflow config file
|
|
|
|
* -------------------------------------------------
|
|
|
|
* Config options for all custom environments.
|
|
|
|
* Cluster-specific config options should be saved
|
|
|
|
* in the conf folder and imported under a profile
|
|
|
|
* name here.
|
|
|
|
*/
|
|
|
|
|
2019-03-06 11:59:54 +00:00
|
|
|
config_base = params.custom_config_base ?: "${params.custom_config_base}/conf" : "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}/conf"
|
2018-11-23 16:33:22 +00:00
|
|
|
|
|
|
|
profiles {
|
2018-11-26 22:49:03 +00:00
|
|
|
binac { includeConfig "${config_base}/binac.config" }
|
|
|
|
ccga { includeConfig "${config_base}/ccga.config" }
|
|
|
|
cfc { includeConfig "${config_base}/cfc.config" }
|
|
|
|
crick { includeConfig "${config_base}/crick.config" }
|
|
|
|
gis { includeConfig "${config_base}/gis.config" }
|
|
|
|
hebbe { includeConfig "${config_base}/hebbe.config" }
|
2018-12-04 15:58:33 +00:00
|
|
|
mendel { includeConfig "${config_base}/mendel.config" }
|
2019-01-10 14:46:16 +00:00
|
|
|
munin { includeConfig "${config_base}/munin.config" }
|
2019-03-06 07:21:34 +00:00
|
|
|
phoenix { includeConfig "${config_base}/phoenix.config" }
|
2019-01-03 15:03:45 +00:00
|
|
|
shh { includeConfig "${config_base}/shh.config" }
|
2018-11-26 22:49:03 +00:00
|
|
|
uct_hex { includeConfig "${config_base}/uct_hex.config" }
|
|
|
|
uppmax_devel { includeConfig "${config_base}/uppmax.config"
|
|
|
|
includeConfig "${config_base}/uppmax-devel.config"
|
2018-11-23 16:33:22 +00:00
|
|
|
}
|
2018-11-26 22:49:03 +00:00
|
|
|
uppmax { includeConfig "${config_base}/uppmax.config" }
|
|
|
|
uzh { includeConfig "${config_base}/uzh.config" }
|
2018-11-23 16:33:22 +00:00
|
|
|
}
|