Skip to content

Commit

Permalink
Avoid exists=True on output file; describe returned dictionary
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Markiewicz <[email protected]>
  • Loading branch information
psadil and effigies authored Dec 5, 2023
1 parent 8aba7a5 commit 92cb229
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions mriqc/interfaces/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,12 +335,8 @@ class GatherTimeseriesInputSpec(TraitedSpec):


class GatherTimeseriesOutputSpec(TraitedSpec):
timeseries_file = File(
exists=True,
desc='output confounds file',
resolve=True,
extensions="tsv")
timeseries_metadata = traits.Dict
timeseries_file = File(desc='output confounds file')
timeseries_metadata = traits.Dict(desc='Metadata dictionary describing columns')


class GatherTimeseries(SimpleInterface):
Expand Down

0 comments on commit 92cb229

Please sign in to comment.