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 a747eb6 commit 948f529Copy full SHA for 948f529
niworkflows/utils/bids.py
@@ -200,11 +200,11 @@ def collect_data(
200
201
queries = {
202
"fmap": {"datatype": "fmap"},
203
- "bold": {"datatype": "func", "suffix": "bold"},
204
- "sbref": {"datatype": "func", "suffix": "sbref"},
205
- "flair": {"datatype": "anat", "suffix": "FLAIR"},
206
- "t2w": {"datatype": "anat", "suffix": "T2w"},
207
- "t1w": {"datatype": "anat", "suffix": "T1w"},
+ "bold": {"datatype": "func", "suffix": "bold", "part": ["mag", None]},
+ "sbref": {"datatype": "func", "suffix": "sbref", "part": ["mag", None]},
+ "flair": {"datatype": "anat", "suffix": "FLAIR", "part": ["mag", None]},
+ "t2w": {"datatype": "anat", "suffix": "T2w", "part": ["mag", None]},
+ "t1w": {"datatype": "anat", "suffix": "T1w", "part": ["mag", None]},
208
"roi": {"datatype": "anat", "suffix": "roi"},
209
}
210
bids_filters = bids_filters or {}
0 commit comments