I would like to download the rest and movie 7T HCP runs of the fully preprocessed plus ICA FIX version (a paradigmatic file name of the files that I would like to download is “rfMRI_REST1_7T_PA_hp2000_clean.nii.gz”)
I spend around five hours now trying to figure out and testing what the correct path for the file that I aim to download is, without success.
Here is an example that shows how I try to download a file:
curl -u my_user_name:my_password \
https://db.humanconnectome.org/data/projects/HCP_1200/subjects/100610/experiments/100610_7T/resources/rfMRI_REST1_PA_FIX/files/100610_rfMRI_REST1_7T_PA_2000_MSMSulc.59k.matlab.log \
-o 100610_rfMRI_REST1_7T_PA_2000_MSMSulc.59k.matlab.log
In this example above, the matlab.log file will be downloaded without any problems, so all good.
Now, using the same appraoch for the denoised ICA FIX functional run:
curl -u my_user_name:my_password \
https://db.humanconnectome.org/data/projects/HCP_1200/subjects/100610/experiments/100610_7T/resources/rfMRI_REST1_PA_FIX/files/rfMRI_REST1_7T_PA/rfMRI_REST1_7T_PA_hp2000_clean.nii.gz \
-o rfMRI_REST1_7T_PA_hp2000_clean.nii.gz
When I open the downloaded file with a texteditor it states " HTTP Status 404 - Unable to find catalog entry for given uri."
Somehow the directory is wrong. However, following the directory structure that one can also access to download the file manually on the HCP webpage, the directory should be correct.
Following the “HCP_S1200_Release_Appendix_III 7T DiffBed.pdf”, the desired file “rfMRI_REST1_7T_PA_hp2000_clean.nii.gz” should be located under the following path:
“…MNINonLinear/Results/rfMRI_REST1_7T_PA/ RestingStateStats/rfMRI_REST1_7T_PA_hp2000.ica/”.
Trying the same approach as shown above with this path also does not work and yields the same problem.
https://db.humanconnectome.org/data/projects/HCP_1200/subjects/100610/experiments/100610_7T/resources/MNINonLinear/Results/rfMRI_REST1_7T_PA/ RestingStateStats/rfMRI_REST1_7T_PA_hp2000.ica/rfMRI_REST1_7T_PA_hp2000_clean.nii.gz \
-o rfMRI_REST1_7T_PA_hp2000_clean.nii.gz
Does anyone know what the correct directory/path for the cleaned/denoised 7T HCP rest and movie runs really is?