Hello all,
I checked my func
output compared to standard fmriprep output, and found that my fun
lacked some outputs related to T1w
and aseg
.
The figure of standard output is from fmriprep documentation:
This is my code:
singularity run \
--cleanenv \
-B $BIDS_DIR:/data:ro \
-B $DERIVS_DIR:/output \
-B $WORK_DIR:/work \
-B ${TEMPLATEFLOW_HOST_HOME}:${SINGULARITYENV_TEMPLATEFLOW_HOME}:ro \
-B ${SINGULARITYENV_FS_LICENSE}:/freesurfer_license:ro \
${FMRIPREP} /data /output \
participant --participant_label $subject \
-w /work \
-vv \
--fs-license-file /freesurfer_license \
--fs-subjects-dir /output/freesurfer \
--mem-mb 64000 \
--n-cpus 16 \
--write-graph \
--output-spaces MNI152NLin2009cAsym:res-2 \
--return-all-components
If I want to accquire the T1w
and aseg
related outputs, do I need add T1w
and fsnative
space to --output-spaces
like this:
--output-spaces T1w fsnative MNI152NLin2009cAsym:res-2 \
Best,
Yunhong