We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5fc210 commit b7aa992Copy full SHA for b7aa992
niworkflows/interfaces/surf.py
@@ -154,13 +154,19 @@ class Path2BIDS(SimpleInterface):
154
suffix = smoothwm
155
<BLANKLINE>
156
157
+ >>> Path2BIDS(in_file='lh.sulc_converted.gii').run().outputs
158
+ <BLANKLINE>
159
+ extension = .gii
160
+ hemi = L
161
+ suffix = sulc
162
163
"""
164
165
input_spec = _Path2BIDSInputSpec
166
output_spec = _Path2BIDSOutputSpec
167
_pattern = re.compile(
168
r"(?P<hemi>[lr])h.(?P<suffix>(wm|smoothwm|pial|midthickness|"
- r"inflated|vinflated|sphere|flat))[\w\d_-]*(?P<extprefix>\.\w+)?"
169
+ r"inflated|vinflated|sphere|flat|sulc|curv|thickness))[\w\d_-]*(?P<extprefix>\.\w+)?"
170
)
171
_excluded = ("extprefix",)
172
0 commit comments