I would regress the ICA component timeseries into the volume timeseries to make volume spatial maps. Keep in mind that this is totally valid as this is a temporal regression rather than a spatial regression.
Matt.
--
You received this message because you are subscribed to the Google Groups "HCP-Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
hcp-users+...@humanconnectome.org.
To view this discussion on the web visit
https://groups.google.com/a/humanconnectome.org/d/msgid/hcp-users/b42673e4-a124-4520-929a-1cdc85f3a0efn%40humanconnectome.org.
The materials in this message are private and may contain Protected Healthcare Information or other information of a sensitive nature. If you are not the intended recipient, be advised that any unauthorized use, disclosure, copying or the taking of any action in reliance on the contents of this information is strictly prohibited. If you have received this email in error, please immediately notify the sender via telephone or return mail.
You received this message because you are subscribed to a topic in the Google Groups "HCP-Users" group.
To unsubscribe from this topic, visit https://groups.google.com/a/humanconnectome.org/d/topic/hcp-users/BNtBR5vB4FU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to hcp-users+...@humanconnectome.org.
To view this discussion on the web visit https://groups.google.com/a/humanconnectome.org/d/msgid/hcp-users/F5BE7F0D-E5C0-4E99-A790-9978750EC2EA%40wustl.edu.
Yes that would work and then you could average them. Have a look at RSNRegression: https://github.com/Washington-University/HCPpipelines/blob/master/global/scripts/RSNregression.sh
Matt.
To view this discussion on the web visit https://groups.google.com/a/humanconnectome.org/d/msgid/hcp-users/FA8A229C-886A-486E-9749-06CD1201DD58%40gmail.com.
So that looks mostly correct except for this:
VolCiftiTemplate=${HOME}/HCPpipelines-4.2.0/global/templates/91282_Greyordinates/91282_Greyordinates.dscalar.nii
This is actually meant to be a volume only CIFTI space specific to your data (all of it). I typically merge all of the ${StudyFolder}/${Subject}/MNINonLinear/${fMRIName}/brainmask_fs.${fMRIResolution}.nii.gz brainmask files and take the maximum across them and then convert it to a CIFTI file using the “OTHER” structure:
if [ ! -e ${StudyFolder}/${GroupAverageName}/MNINonLinear/${GroupAverageName}_CIFTIVolumeTemplate.${fMRIResolution}.txt ] ; then
echo "OTHER" > ${StudyFolder}/${GroupAverageName}/MNINonLinear/${GroupAverageName}_CIFTIVolumeTemplate.${fMRIResolution}.txt
echo "1 255 255 255 255" >> ${StudyFolder}/${GroupAverageName}/MNINonLinear/${GroupAverageName}_CIFTIVolumeTemplate.${fMRIResolution}.txt
fi
${Caret7_Command} -volume-label-import ${StudyFolder}/${GroupAverageName}/MNINonLinear/brainmask_fs_max.${fMRIResolution}.nii.gz ${StudyFolder}/${GroupAverageName}/MNINonLinear/${GroupAverageName}_CIFTIVolumeTemplate.${fMRIResolution}.txt ${StudyFolder}/${GroupAverageName}/MNINonLinear/brainmask_fs_max.${fMRIResolution}.nii.gz
${Caret7_Command} -cifti-create-dense-scalar ${StudyFolder}/${GroupAverageName}/MNINonLinear/${GroupAverageName}_CIFTIVolumeTemplate.${fMRIResolution}.dscalar.nii -volume ${StudyFolder}/${GroupAverageName}/MNINonLinear/brainmask_fs_max.${fMRIResolution}.nii.gz ${StudyFolder}/${GroupAverageName}/MNINonLinear/brainmask_fs_max.${fMRIResolution}.nii.gz
rm ${StudyFolder}/${GroupAverageName}/MNINonLinear/${GroupAverageName}_CIFTIVolumeTemplate.${fMRIResolution}.txt
I find it easier to just treat everything as CIFTI rather than having to mask and unmask the data repeatedly and deal with the increased memory usage. You can easily convert back to NIFTI with wb_command -cifti-separate.
I think I need to know more about the goals of your study to give more specific advice.
To view this discussion on the web visit https://groups.google.com/a/humanconnectome.org/d/msgid/hcp-users/ef16691b-b1fb-4c90-bddc-eeec8ec410ecn%40humanconnectome.org.
Help me understand why this is of interest, off-list if need be.