-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to handle sessions involving multiple subjects #4
Comments
This is a good point, argree it is not clear how best to support this without somehow breaking BIDS. It would be interesting to see how these experiments work in practice (I don't have much experience with such experiments) to get a feel for how complicated it would be and how the data is stored already. I see there was some discussion of a 'pool' level. Maybe having this 'replace' sub-XXX and then move sub- to the lowest level e.g.: . but this could get confusing if e.g. mice are interacting with lots of different other mice so there are many combinations / pools. Alternatively, maybe keeping the current folder structure and doing everything by pairing mice in the meta-data, though if there is one feed e.g. MP4 for both mice I guess this wouldnt work |
I had some ideas on this recently, which would require minimal modifications to our current schema. └── project/
└── sub-001/
└── ses-001/
└── behav/
├── sub-001_ses-001_task-discrim_monitor-right_run-001.mp4
├── sub-001_ses-001_task-discrim_monitor-left_run-001.mp4
└── sub-001_ses-001_task-discrim_monitor-right_run-002.mp4
└── group-A/
└── ses-001/
└── behav/
├── group-A_ses-001_task-interaction_run-001.mp4
├── group-A_ses-001_task-interaction_run-002.mp4
├── sub-001_ses-001_task-interaction_run-001.mp4
└── sub-002_ses-001_task-interaction_run-001.mp4
└── groups.yaml The idea is that we create a new reserved keyword ( group-A:
- sub-001
- sub-002
group-B:
- sub-001
- sub-003
group-C:
- sub-004
- sub-005
- sub-006 There is endless flexibility, one can have as many subjects and groups as required, and each subject can appear in multiple groups. They only requirement is that each unique subset of subjects that appears in the project has a unique group ID (specified in the I don't see any immediate problems with this solution (though probably I can't see very far). It also works in weird scenarios. Imagine an experimenter performs a |
@niksirbi I like it. There's no reason why (at least conceptually, if not semantically) a subject needs to be one mouse. A subject could be one mouse, a group or an entire population. Adding one new reserved keyword and an additional yaml file caters to any experiment I can think of at the moment (even more complicated behavioural experiments in other species). |
@yarikoptic made us aware that a similar discussion has taken place for MRI hyperscanning (aka scanning 2 individuals in a single session, performing social tasks). See relevant thread. |
Sometimes experiments are performed with multiple subjects in a single session (e.g. videos of two mice interacting). Given BIDS' emphasis on always putting the subject-level directory at the top, I don't see an easy way to resolve this. I think multi-animal experiments will get increasingly common, so it makes sense to support them somehow.
This problem has been discussed a lot in this issue.
Any thoughts on this @JoeZiminski ?
The text was updated successfully, but these errors were encountered: