mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
16 lines
738 B
Text
16 lines
738 B
Text
/*
|
|
* -------------------------------------------------
|
|
* nfcore/rnaseq custom profile Nextflow config file
|
|
* -------------------------------------------------
|
|
* Config options for custom environments.
|
|
* Cluster-specific config options should be saved
|
|
* in the conf/pipeline/rnaseq folder and imported
|
|
* under a profile name here.
|
|
*/
|
|
|
|
profiles {
|
|
eddie { includeConfig "${params.custom_config_base}/conf/pipeline/rnaseq/eddie.config" }
|
|
mpcdf { includeConfig "${params.custom_config_base}/conf/pipeline/rnaseq/mpcdf.config" }
|
|
sbc_sharc { includeConfig "${params.custom_config_base}/conf/pipeline/rnaseq/sbc_sharc.config" }
|
|
utd_sysbio { includeConfig "${params.custom_config_base}/conf/pipeline/rnaseq/utd_sysbio.config" }
|
|
}
|