-
Notifications
You must be signed in to change notification settings - Fork 26
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
Support session-wise post-processing #1306
Comments
The link to the example JSON file for this flag is broken. Can you fix that? https://xcp-d.readthedocs.io/en/latest/usage.html. What should be the argument used to run each session separately |
I've opened #1323 to fix the link. I don't think we'll have an argument on XCP-D's end to enably session-wise processing. It should depend on the organization of the input data. |
Thanks. So if I do:
It would try to use the same anatomical file, but if I do:
and run the pipeline again on
Then it's okay? |
You should probably include |
I don't quite follow that, can you provide a toy example of how this --bids-filter-file is used? |
Something like this {
"anat_brainmask": {
"session": "01"
},
"anat_to_template_xfm": {
"session": "01"
},
"bold": {
"session": "01"
},
"cortical_thickness": {
"session": "01"
},
"cortical_thickness_corr": {
"session": "01"
},
"lh_pial_surf": {
"session": "01"
},
"lh_subject_sphere": {
"session": "01"
},
"lh_wm_surf": {
"session": "01"
},
"myelin": {
"session": "01"
},
"myelin_smoothed": {
"session": "01"
},
"rh_pial_surf": {
"session": "01"
},
"rh_subject_sphere": {
"session": "01"
},
"rh_wm_surf": {
"session": "01"
},
"sulcal_curv": {
"session": "01"
},
"sulcal_depth": {
"session": "01"
},
"t1w": {
"session": "01"
},
"t2w": {
"session": "01"
},
"template_to_anat_xfm": {
"session": "01"
}
} |
@tsalo wdyt about adding --session-id for session filtering? |
That should definitely be part of this. |
Summary
Anatomical processing is done across sessions. Power users work around this by using the
--bids-filter-file
to run each session separately, but we should natively support session-wise processing.The text was updated successfully, but these errors were encountered: