Skip to content

Commit

Permalink
Update reportlets.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed May 5, 2024
1 parent 3e9c3a2 commit 291040b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/fmripost_aroma/interfaces/reportlets.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,16 @@ def _generate_report(self):


class _ICAAROMAInputSpecRPT(nrb._SVGReportCapableInputSpec):
in_file = File(
exists=True,
mandatory=True,
desc="BOLD series input to ICA-AROMA",
)
melodic_dir = Directory(
exists=True,
mandatory=True,
desc="MELODIC directory containing the ICA outputs",
)
aroma_noise_ics = File(
exists=True,
desc="Noise components estimated by ICA-AROMA, in a comma-separated values file.",
Expand All @@ -196,6 +206,8 @@ class _ICAAROMAInputSpecRPT(nrb._SVGReportCapableInputSpec):
desc="Filename for the visual" " report generated " "by Nipype.",
)
report_mask = File(
exists=True,
mandatory=True,
desc=(
"Mask used to draw the outline on the reportlet. "
"If not set the mask will be derived from the data."
Expand Down

0 comments on commit 291040b

Please sign in to comment.