Replies: 4 comments 5 replies
-
Hi Steven, I was wondering if the code to calculate the response function for a single-subject, has been made available. Further, would it be possible to get the response function without running the full reconstruction pathway? Many thanks, @civier @davidjwhite_33 |
Beta Was this translation helpful? Give feedback.
-
Hi @lizannea , Using mrtrix3, you can use Best, |
Beta Was this translation helpful? Give feedback.
-
@smeisler, I think that the option to have a group response would be really good. Current https://github.com/BIDS-Apps/MRtrix3_connectome has that ability and being able to have an option for a group response would be beneficial. |
Beta Was this translation helpful? Give feedback.
-
This is something I've been thinking about for awhile too. My approach would be to make some custom json files so that only the response estimation is done. You can start with any of the mrtrix workflows and edit them so that they stop after dwi2response. For example, you could use {
"name": "mrtrix_response",
"space": "T1w",
"atlases": [],
"anatomical": [],
"nodes": [
{
"name": "msmt_csd",
"software": "MRTrix3",
"action": "csd",
"output_suffix": "msmtcsd",
"input": "qsiprep",
"parameters": {
"mtnormalize": true,
"response": {
"algorithm": "dhollander"
},
"fod": {
"algorithm": "msmt_csd",
"max_sh": [
8,
8,
8
]
}
}
}
]
} Then you'll have response functions for everyone that goes through this workflow. That's where qsiprep runs out of usefulness at the moment, though, as I don't have a way to read in response functions into a reconstruction workflow yet. If anyone would be interested in implementing this, I'd be very happy to help get them started! |
Beta Was this translation helpful? Give feedback.
-
Hello,
I was curious what the community thought about having an alternate way of handling response functions. For between-subject comparisons of CSD metrics (e.g. AFD), one usually uses a group-averaged response function. However, the downside is that individual subject tractography will not be accurate for each subject, since the FODS in each voxel are now informed by the group-averaged rather than subject-specific response profiles.
Do you think it would be worth having a group-averaged option, or should one just venture outside of QSIPrep/Recon for that?
Best,
Steven
Beta Was this translation helpful? Give feedback.
All reactions