agora.io.utils.get_store_path

get_store_path(save_dir, store, name)[source]

Create a path to a position-specific store.

This combines the name and the store’s base name into a file path within save_dir. For example. >>> get_store_path(‘data’, ‘baby_seg.h5’, ‘pos001’) Path(data/pos001baby_seg.h5’)

Parameters

save_dir – The root directory in which to save the file, absolute

path. :param store: The base name of the store :param name: The name of the position :return: Path(save_dir) / name+store