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 16:03:13 +00:00
|
|
|
params.custom_config_version = 'master'
|
|
|
|
params.custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}"
|
2018-11-23 16:33:22 +00:00
|
|
|
|
|
|
|
profiles {
|
2019-03-06 18:14:45 +00:00
|
|
|
binac { includeConfig "${params.custom_config_base}/conf/binac.config" }
|
|
|
|
ccga { includeConfig "${params.custom_config_base}/conf/ccga.config" }
|
|
|
|
cfc { includeConfig "${params.custom_config_base}/conf/cfc.config" }
|
|
|
|
crick { includeConfig "${params.custom_config_base}/conf/crick.config" }
|
2019-06-26 02:02:49 +00:00
|
|
|
czbiohub_aws { includeConfig "${params.custom_config_base}/conf/czbiohub_aws.config" }
|
2019-07-01 16:25:46 +00:00
|
|
|
czbiohub_aws_highpriority { includeConfig "${params.custom_config_base}/conf/czbiohub_aws_highpriority.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
gis { includeConfig "${params.custom_config_base}/conf/gis.config" }
|
|
|
|
hebbe { includeConfig "${params.custom_config_base}/conf/hebbe.config" }
|
|
|
|
mendel { includeConfig "${params.custom_config_base}/conf/mendel.config" }
|
|
|
|
munin { includeConfig "${params.custom_config_base}/conf/munin.config" }
|
|
|
|
phoenix { includeConfig "${params.custom_config_base}/conf/phoenix.config" }
|
|
|
|
shh { includeConfig "${params.custom_config_base}/conf/shh.config" }
|
|
|
|
uct_hex { includeConfig "${params.custom_config_base}/conf/uct_hex.config" }
|
|
|
|
uppmax_devel { includeConfig "${params.custom_config_base}/conf/uppmax.config"
|
|
|
|
includeConfig "${params.custom_config_base}/conf/uppmax-devel.config"
|
2018-11-23 16:33:22 +00:00
|
|
|
}
|
2019-03-06 18:14:45 +00:00
|
|
|
uppmax { includeConfig "${params.custom_config_base}/conf/uppmax.config" }
|
|
|
|
uzh { includeConfig "${params.custom_config_base}/conf/uzh.config" }
|
2018-11-23 16:33:22 +00:00
|
|
|
}
|