@@ -640,7 +640,7 @@ def parse_spaces(opts):
640
640
from sys import stderr
641
641
from collections import OrderedDict
642
642
from templateflow .api import templates as get_templates
643
- # Set the default template to 'MNI152NLin2009c '
643
+ # Set the default template to 'MNI152NLin2009cAsym '
644
644
output_spaces = opts .output_spaces or OrderedDict ([('MNI152NLin2009cAsym' , {})])
645
645
646
646
if opts .template :
@@ -678,17 +678,17 @@ def parse_spaces(opts):
678
678
# Validity of some inputs
679
679
# ERROR check if use_aroma was specified, but the correct template was not
680
680
if opts .use_aroma and 'MNI152NLin6Asym' not in output_spaces :
681
- output_spaces ['MNI152Lin6Asym ' ] = {'res' : 2 }
681
+ output_spaces ['MNI152NLin6Asym ' ] = {'res' : 2 }
682
682
print ("""\
683
- Option "--use-aroma" requires functional images to be resampled to MNI152Lin6Asym space. \
684
- The argument "MNI152Lin6Asym :res-2" has been automatically added to the list of output spaces \
683
+ Option "--use-aroma" requires functional images to be resampled to MNI152NLin6Asym space. \
684
+ The argument "MNI152NLin6Asym :res-2" has been automatically added to the list of output spaces \
685
685
(option ``--output-spaces``).""" , file = stderr )
686
686
687
687
if opts .cifti_output and 'fsLR' not in output_spaces :
688
688
if 'MNI152NLin6Asym' not in output_spaces :
689
689
output_spaces ['MNI152NLin6Asym' ] = {'res' : 2 }
690
690
print ("""Option ``--cifti-output`` requires functional images to be resampled to \
691
- ``MNI152LinAsym `` space. Such template identifier has been automatically added to the list \
691
+ ``MNI152NLin6Asym `` space. Such template identifier has been automatically added to the list \
692
692
of output spaces (option "--output-space").""" , file = stderr )
693
693
if not [s for s in output_spaces if s in ('fsaverage5' , 'fsaverage6' )]:
694
694
output_spaces ['fsaverage5' ] = {}
0 commit comments