-
Notifications
You must be signed in to change notification settings - Fork 15
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
Deal with subjects scanned on different scanners #102
Comments
This is a valid concern. However, merging these participants would break the analysis code, so there is a pros/cons here. |
I'll fix the analysis code. |
Turns out, the hardware field already has a place to go in BIDS: it goes in the .json, not in the filename, and we have this data in the right place already:
And BIDS recommends encoding multiple visits/scans by nesting them a level deeper under I propose
|
thank you @kousu, this seems like a very reasonable plan. In terms of index vs. scanner name in the filename, i do have a slight preference for encoding in the file name, just because it is more human friendly |
Great. I can do that! |
Reviving this thread, given a recent comment #166 and the demographic-based project from @renelabounek. We should find a reasonable strategy to deal with the same subjects being scanned at multiple sites. The solutions proposed in #102 (comment) is problematic, in that the logic of the analysis code and results should be drastically different. I'm wondering if simply adding a column in the https://github.com/spine-generic/data-multi-subject/blob/113b258695074b77d40ba987474eddc14f9d9698/participants.tsv with an arbitrary ID for each subject could properly address this? Then, for projects where the demographics of the subject is relevant (eg: @renelabounek project), the specific analysis code could use that information (by, eg., selecting non-duplicate subjects based on their IDs as opposed to based on the |
There are 15
sub-tokyo
subjects; however, there's actually only 5 real subjects involved, each scanned on three different MRI scanners. For example:It is safer, and probably more BIDS-compliant, if we represented the "different scanner" field using an
acq-
entity (or possiblyses-
), and put these scans all under a single folder (sub-tokyo01
). Then we only need to record their tabular data once inparticipants.tsv
and repairs like #96 won't be so fraught to perform.Discovered in #96 (comment)
The text was updated successfully, but these errors were encountered: