Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Oct 29, 2024
1 parent f0f2601 commit 5a8fdbf
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions xcp_d/interfaces/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,18 +403,18 @@ def _run_interface(self, runtime):
"LongName": "Number of Confounds",
"Description": (
"The number of confounds used in the denoising step. "
"Combine this with num_dof_used_by_filter (+2) to estimate the degrees of "
"freedom for bivariate correlations between censored, denoised time series "
"(ignoring the effect of autocorrelation)."
"To estimate the degrees of freedom for bivariate correlations between "
"censored, denoised time series (ignoring the effect of autocorrelation), "
"do num_retained_volumes - (num_confounds + num_dof_used_by_filter + 2)."
),
},
"num_dof_used_by_filter": {
"LongName": "Number of Degrees of Freedom Lost by Temporal Filter",
"Description": (
"The degrees of freedom used up by the temporal filter. "
"Combine this with num_confounds (+2) to estimate the degrees of freedom "
"for bivariate correlations between censored, denoised time series "
"(ignoring the effect of autocorrelation)."
"To estimate the degrees of freedom for bivariate correlations between "
"censored, denoised time series (ignoring the effect of autocorrelation), "
"do num_retained_volumes - (num_confounds + num_dof_used_by_filter + 2)."
),
},
"num_censored_volumes": {
Expand All @@ -428,7 +428,10 @@ def _run_interface(self, runtime):
"LongName": "Number of Retained Volumes",
"Description": (
"The number of volumes retained in the denoised dataset. "
"This does not include dummy volumes or high-motion outliers."
"This does not include dummy volumes or high-motion outliers. "
"To estimate the degrees of freedom for bivariate correlations between "
"censored, denoised time series (ignoring the effect of autocorrelation), "
"do num_retained_volumes - (num_confounds + num_dof_used_by_filter + 2)."
),
},
"fd_dvars_correlation_initial": {
Expand Down

0 comments on commit 5a8fdbf

Please sign in to comment.