Easy way to create multi-level containers ? #73
-
Hi, I was wondering if there is an easy way to create container of containers ? Let say I have
Is there an easy way to do so ? If not, is there a reason to not save the data in such structure ? I tried playing around with Code here```python
Also I think that what I want is doable if defining an extension, but I would prefer an easier way if it exists :). Any help would be much appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Sounds like this is for pose estimation data - is this from DeepLabCut, SLEAP, or lighting pose? If so you can use the automated converters from NeuroConv If not, it sounds like the extension you want to use is |
Beta Was this translation helpful? Give feedback.
For acquisition specifically, that is harder to do
For processing, you can nest them within different and appropriately named processing modules
High levels of nesting are also going out of favor as time goes on; it is becoming a more modern best practice to use a flatter structure with richer object names (with the names effectively absorbing the nesting into them; in your case, the
emg
object could have thesystem
detail appended to it)Otherwise, it would only be possible in the EMG case with a custom extension