Skip to content

Commit

Permalink
Update confounds.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed May 16, 2024
1 parent f6b8ef3 commit 33b624a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fmripost_aroma/interfaces/confounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def _run_interface(self, runtime):

# Load the mixing matrix. It doesn't have a header row
mixing = np.loadtxt(mixing_file)
mixing = mixing[self.inputs.skip_vols:, :]
mixing = mixing[self.inputs.skip_vols :, :]

Check warning on line 145 in src/fmripost_aroma/interfaces/confounds.py

View check run for this annotation

Codecov / codecov/patch

src/fmripost_aroma/interfaces/confounds.py#L144-L145

Added lines #L144 - L145 were not covered by tests

# Split up component time series into accepted and rejected components
metrics_df = pd.read_table(metrics_file)
Expand Down

0 comments on commit 33b624a

Please sign in to comment.