Skip to content

Commit

Permalink
Update report.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Oct 30, 2024
1 parent e621b6f commit e9fd29d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xcp_d/interfaces/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
\t\t\t<li>DVARS Before and After Processing : {dvars_before_after}</li>
\t\t\t<li>Correlation between DVARS and FD Before and After Processing :
{fd_dvars_correlation}</li>
\t\t\t<li>Number of Volumes Retained : {num_vols_retained}</li>
\t\t\t<li>Number of Volumes Censored : {num_vols_censored}</li>
\t\t\t<li>Number of Volumes Retained : {num_retained_volumes}</li>
\t\t\t<li>Number of Volumes Censored : {num_censored_volumes}</li>
\t\t\t<li>Lost Degrees of Freedom from Denoising : {num_dof_used_by_denoising}</li>
\t\t\t<li>Lost Degrees of Freedom from Filtering : {num_dof_used_by_filter}</li>
\t\t</ul>
Expand Down Expand Up @@ -169,8 +169,8 @@ def _generate_segment(self):
max_relative_rms=max_relative_rms,
dvars_before_after=dvars,
fd_dvars_correlation=fd_dvars_correlation,
num_vols_retained=qcfile["num_vols_retained"][0],
num_vols_censored=qcfile["num_censored_volumes"][0],
num_retained_volumes=qcfile["num_retained_volumes"][0],
num_censored_volumes=qcfile["num_censored_volumes"][0],
num_dof_used_by_denoising=qcfile["num_dof_used_by_denoising"][0],
num_dof_used_by_filter=qcfile["num_dof_used_by_filter"][0],
)
Expand Down

0 comments on commit e9fd29d

Please sign in to comment.