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
|
|
|
|
2019-11-26 13:04:58 +00:00
|
|
|
//Please use a new line per include Config section to allow easier linting/parsing. Thank you.
|
2018-11-23 16:33:22 +00:00
|
|
|
profiles {
|
2019-10-10 13:33:06 +00:00
|
|
|
awsbatch { includeConfig "${params.custom_config_base}/conf/awsbatch.config" }
|
2019-07-31 20:52:16 +00:00
|
|
|
bigpurple { includeConfig "${params.custom_config_base}/conf/bigpurple.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
binac { includeConfig "${params.custom_config_base}/conf/binac.config" }
|
2019-09-22 14:45:09 +00:00
|
|
|
cbe { includeConfig "${params.custom_config_base}/conf/cbe.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
ccga { includeConfig "${params.custom_config_base}/conf/ccga.config" }
|
2019-07-29 10:08:07 +00:00
|
|
|
ccga_dx { includeConfig "${params.custom_config_base}/conf/ccga_dx.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
cfc { includeConfig "${params.custom_config_base}/conf/cfc.config" }
|
|
|
|
crick { includeConfig "${params.custom_config_base}/conf/crick.config" }
|
2019-07-31 22:30:51 +00:00
|
|
|
czbiohub_aws { includeConfig "${params.custom_config_base}/conf/czbiohub_aws.config" }
|
2019-11-26 12:57:32 +00:00
|
|
|
czbiohub_aws_highpriority { includeConfig "${params.custom_config_base}/conf/czbiohub_aws.config";
|
|
|
|
includeConfig "${params.custom_config_base}/conf/czbiohub_aws_highpriority.config" }
|
2019-11-11 11:28:45 +00:00
|
|
|
denbi_qbic { includeConfig "${params.custom_config_base}/conf/denbi_qbic.config" }
|
2019-10-16 16:15:04 +00:00
|
|
|
genouest { includeConfig "${params.custom_config_base}/conf/genouest.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
gis { includeConfig "${params.custom_config_base}/conf/gis.config" }
|
2019-07-31 21:37:11 +00:00
|
|
|
hebbe { includeConfig "${params.custom_config_base}/conf/hebbe.config" }
|
2019-08-05 12:59:36 +00:00
|
|
|
kraken { includeConfig "${params.custom_config_base}/conf/kraken.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
munin { includeConfig "${params.custom_config_base}/conf/munin.config" }
|
2019-07-31 20:52:16 +00:00
|
|
|
pasteur { includeConfig "${params.custom_config_base}/conf/pasteur.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
phoenix { includeConfig "${params.custom_config_base}/conf/phoenix.config" }
|
2019-07-31 21:40:43 +00:00
|
|
|
prince { includeConfig "${params.custom_config_base}/conf/prince.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
shh { includeConfig "${params.custom_config_base}/conf/shh.config" }
|
|
|
|
uct_hex { includeConfig "${params.custom_config_base}/conf/uct_hex.config" }
|
|
|
|
uppmax { includeConfig "${params.custom_config_base}/conf/uppmax.config" }
|
2019-11-26 12:57:32 +00:00
|
|
|
uppmax_devel { includeConfig "${params.custom_config_base}/conf/uppmax.config";
|
|
|
|
includeConfig "${params.custom_config_base}/conf/uppmax_devel.config" }
|
2019-03-06 18:14:45 +00:00
|
|
|
uzh { includeConfig "${params.custom_config_base}/conf/uzh.config" }
|
2018-11-23 16:33:22 +00:00
|
|
|
}
|
2019-03-13 16:15:16 +00:00
|
|
|
|
|
|
|
// If user hostnames contain one of these substring and they are
|
|
|
|
// not running the associated profile, it will trigger a warning message
|
|
|
|
// Should be defined here for all profiles (not within profile config)
|
|
|
|
params {
|
|
|
|
// This is a groovy map, not a nextflow parameter set
|
|
|
|
hostnames = [
|
2019-03-13 16:53:30 +00:00
|
|
|
crick: ['.thecrick.org'],
|
2019-10-16 16:15:04 +00:00
|
|
|
genouest: ['.genouest.org'],
|
2019-03-13 16:53:30 +00:00
|
|
|
uppmax: ['.uppmax.uu.se']
|
2019-03-13 16:15:16 +00:00
|
|
|
]
|
2018-11-23 16:33:22 +00:00
|
|
|
}
|