1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 16:29:55 +00:00
nf-configs/conf/bi.config

19 lines
672 B
Text
Raw Normal View History

2020-05-27 15:41:19 +00:00
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/'
}
2020-05-27 14:19:15 +00:00
params.globalConfig = determine_global_config()
2020-05-27 14:30:00 +00:00
includeConfig params.globalConfig
2020-05-27 14:19:15 +00:00
def determine_global_config() {
2020-05-27 14:30:00 +00:00
if( System.getenv('NXF_GLOBAL_CONFIG') == null)
{
def errorMessage = "ERROR: Environment variable NXF_GLOBAL_CONFIG is missing. Set it to point to global.config file."
System.err.println(errorMessage)
throw new Exception(errorMessage)
2020-05-27 14:30:00 +00:00
}
2020-05-27 14:19:15 +00:00
return System.getenv('NXF_GLOBAL_CONFIG')
}