Skip to content

Commit 15a6c47

Browse files
committed
FIX: remove exists=true from output spec
1 parent bd2975e commit 15a6c47

File tree

1 file changed

+11
-17
lines changed

1 file changed

+11
-17
lines changed

nipype/interfaces/freesurfer/petsurfer.py

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -401,45 +401,39 @@ class GTMPVCInputSpec(FSTraitedSpec):
401401
class GTMPVCOutputSpec(TraitedSpec):
402402

403403
pvc_dir = Directory(exists=True, desc="output directory")
404-
ref_file = File(exists=True, desc="Reference TAC in .dat")
405-
hb_nifti = File(exists=True, desc="High-binding TAC in nifti")
406-
hb_dat = File(exists=True, desc="High-binding TAC in .dat")
407-
nopvc_file = File(exists=True, desc="TACs for all regions with no PVC")
408-
gtm_file = File(exists=True, desc="TACs for all regions with GTM PVC")
409-
gtm_stats = File(exists=True, desc="Statistics for the GTM PVC")
410-
input_file = File(exists=True, desc="4D PET file in native volume space")
411-
reg_pet2anat = File(exists=True, desc="Registration file to go from PET to anat")
404+
ref_file = File(desc="Reference TAC in .dat")
405+
hb_nifti = File(desc="High-binding TAC in nifti")
406+
hb_dat = File(desc="High-binding TAC in .dat")
407+
nopvc_file = File(desc="TACs for all regions with no PVC")
408+
gtm_file = File(desc="TACs for all regions with GTM PVC")
409+
gtm_stats = File(desc="Statistics for the GTM PVC")
410+
input_file = File(desc="4D PET file in native volume space")
411+
reg_pet2anat = File(desc="Registration file to go from PET to anat")
412412
mgx_ctxgm = File(
413-
exists=True,
414413
desc="Cortical GM voxel-wise values corrected using the extended Muller-Gartner method",
415414
)
416415
mgx_subctxgm = File(
417-
exists=True,
418416
desc="Subcortical GM voxel-wise values corrected using the extended Muller-Gartner method",
419417
)
420418
mgx_gm = File(
421-
exists=True,
422419
desc="All GM voxel-wise values corrected using the extended Muller-Gartner method",
423420
)
424421
rbv = File(
425-
exists=True, desc="All GM voxel-wise values corrected using the RBV method"
422+
desc="All GM voxel-wise values corrected using the RBV method"
426423
)
427424
opt_params = File(
428-
exists=True, desc="Optimal parameter estimates for the FWHM using adaptive GTM"
425+
desc="Optimal parameter estimates for the FWHM using adaptive GTM"
429426
)
430427
yhat0 = File(
431-
exists=True, desc="4D PET file of signal estimate (yhat) after PVC (unsmoothed)"
428+
desc="4D PET file of signal estimate (yhat) after PVC (unsmoothed)"
432429
)
433430
yhat = File(
434-
exists=True,
435431
desc="4D PET file of signal estimate (yhat) after PVC (smoothed with PSF)",
436432
)
437433
yhat_full_fov = File(
438-
exists=True,
439434
desc="4D PET file with full FOV of signal estimate (yhat) after PVC (smoothed with PSF)",
440435
)
441436
yhat_with_noise = File(
442-
exists=True,
443437
desc="4D PET file with full FOV of signal estimate (yhat) with noise after PVC (smoothed with PSF)",
444438
)
445439

0 commit comments

Comments
 (0)