Skip to content

Commit 87e57b4

Browse files
committed
Revert "ENH: add PET support to niworkflows"
This reverts commit d139113.
1 parent d139113 commit 87e57b4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

niworkflows/interfaces/bids.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@ class _BIDSDataGrabberOutputSpec(TraitedSpec):
225225
roi = OutputMultiObject(desc="output ROI images")
226226
t2w = OutputMultiObject(desc="output T2w images")
227227
flair = OutputMultiObject(desc="output FLAIR images")
228-
pet = OutputMultiObject(desc="output PET images")
229228

230229

231230
class BIDSDataGrabber(SimpleInterface):
@@ -277,7 +276,7 @@ def _run_interface(self, runtime):
277276
)
278277
)
279278

280-
for imtype in ["bold", "t2w", "flair", "fmap", "sbref", "roi", "pet"]:
279+
for imtype in ["bold", "t2w", "flair", "fmap", "sbref", "roi"]:
281280
if not bids_dict[imtype]:
282281
LOGGER.info(
283282
'No "%s" images found for sub-%s', imtype, self.inputs.subject_id

niworkflows/utils/bids.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ def collect_data(
233233
"t2w": {"datatype": "anat", "suffix": "T2w", "part": ["mag", None]},
234234
"t1w": {"datatype": "anat", "suffix": "T1w", "part": ["mag", None]},
235235
"roi": {"datatype": "anat", "suffix": "roi"},
236-
"pet": {"suffix": "pet"}
237236
}
238237
bids_filters = bids_filters or {}
239238
for acq, entities in bids_filters.items():

0 commit comments

Comments
 (0)