In nipype/interfaces/freesurfer/utils.py line 854 should be fixed to actually include the .asc datatype, by substituting: ``` out_datatype = traits.Enum("ico", "tri", "stl", "vtk", "gii", "mgh", "mgz", ``` with: ``` out_datatype = traits.Enum("asc", "ico", "tri", "stl", "vtk", "gii", "mgh", "mgz", ``` Otherwise "asc" format is not supported. Thank you!