mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
32 lines
1.8 KiB
Text
32 lines
1.8 KiB
Text
/*
|
|
* -------------------------------------------------
|
|
* 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}"
|
|
|
|
profiles {
|
|
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" }
|
|
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" }
|
|
test_configs { includeConfig "${params.custom_config_base}/conf/test_configs.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"
|
|
}
|
|
uppmax { includeConfig "${params.custom_config_base}/conf/uppmax.config" }
|
|
uzh { includeConfig "${params.custom_config_base}/conf/uzh.config" }
|
|
}
|