Skip to content

Commit

Permalink
fix: make the subject id optional
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban committed Aug 15, 2024
1 parent 6ea4dde commit 4558881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mriqc/interfaces/bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class IQMFileSinkInputSpec(DynamicTraitedSpec, BaseInterfaceInputSpec):
in_file = Str(mandatory=True, desc='path of input file')
modality = Str(mandatory=True, desc='the qc type')
entities = traits.Dict(desc='entities corresponding to the input')
subject_id = Str(mandatory=True, desc='the subject id')
subject_id = Str(desc='the subject id')
session_id = traits.Either(None, Str, usedefault=True)
task_id = traits.Either(None, Str, usedefault=True)
acq_id = traits.Either(None, Str, usedefault=True)
Expand Down

0 comments on commit 4558881

Please sign in to comment.