From c6d707036076b56c1d8d006f6cb5b8f1d35fa342 Mon Sep 17 00:00:00 2001 From: Matt Einhorn Date: Fri, 12 Apr 2024 10:41:41 -0400 Subject: [PATCH] Replace source_custom_config_cellfinder with newer function (#89) Changed in https://github.com/brainglobe/cellfinder/pull/394. --- brainglobe_workflows/brainmapper/parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brainglobe_workflows/brainmapper/parser.py b/brainglobe_workflows/brainmapper/parser.py index 81ef1521..38fcef21 100644 --- a/brainglobe_workflows/brainmapper/parser.py +++ b/brainglobe_workflows/brainmapper/parser.py @@ -22,7 +22,7 @@ download_directory_parser, model_parser, ) -from cellfinder.core.tools.source_files import source_custom_config_cellfinder +from cellfinder.core.tools.source_files import user_specific_configuration_path from brainglobe_workflows import __version__ @@ -388,7 +388,7 @@ def config_parse(parser): "--config", dest="registration_config", type=str, - default=source_custom_config_cellfinder(), + default=user_specific_configuration_path(), help="To supply your own, custom configuration file.", )