1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 06:02:03 +00:00
nf-configs/nfcore_custom.config

50 lines
2.8 KiB
Text
Raw Normal View History

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.
*/
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-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" }
czbiohub_aws_highpriority { includeConfig "${params.custom_config_base}/conf/czbiohub_aws.config"; includeConfig "${params.custom_config_base}/conf/czbiohub_aws_highpriority.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-07-31 22:39:42 +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
}
// 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']
]
2018-11-23 16:33:22 +00:00
}