mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-13 05:03:10 +00:00
15 lines
577 B
Text
15 lines
577 B
Text
params{
|
|
config_profile_description = 'Boehringer Ingelheim internal profile provided by nf-core/configs.'
|
|
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
|
config_profile_url = 'https://www.boehringer-ingelheim.com/'
|
|
}
|
|
|
|
def configVar = System.getenv('NXF_GLOBAL_CONFIG')
|
|
if(configVar == null)
|
|
{
|
|
def errorMessage = "WARNING: For bi.config requires NXF_GLOBAL_CONFIG env var to be set. Point it to global.config file if you want to use this profile."
|
|
System.err.println(errorMessage)
|
|
}else{
|
|
params.globalConfig = configVar
|
|
includeConfig configVar
|
|
}
|