-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hi Kale,
Thanks for all your efforts in maintaining this pioneer project. I suspect this is more of a feature request than a bug report:
I have an aggregator.toml file:
extra_main = 1
[meta.concat]
'5h' = '20220901_nluc_AAV9.AB_B22_5h.toml'
'1h' = '20220901_nluc_AAV9.AB_B22_1h.toml'
and the two other toml files. Each of those also contains extras. When doing
wellmap.load(aggregator.toml, extras=True)
only the extra_main=1 is returned but none of the "extras" defined in the actual layout TOML files. Is this intended? Should it not return a dict of dicts with the top level aggregator dict having keys defined under [meta.concat]?
The use case I am building aims to link data descriptors to routines that plot the data processed from the wells. E.g. in this case incubation time (1h vs 5h) should show up in subplot titles. I feel such annotative pieces of text have the right place in TOML files, this way plotting routines can remain much more generic and reusable.