Skip to content

Commit

Permalink
fix: drop std_dvars as their correlation with dvars is 1.0 al…
Browse files Browse the repository at this point in the history
…ways
  • Loading branch information
oesteban committed Sep 4, 2020
1 parent 8da272e commit f0631cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmriprep/workflows/bold/confounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def _select_cols(table):
import pandas as pd
return [
col for col in pd.read_table(table, nrows=2).columns
if not col.startswith(("a_comp_cor_", "t_comp_cor_"))
if not col.startswith(("a_comp_cor_", "t_comp_cor_", "std_dvars"))
]

workflow.connect([
Expand Down

0 comments on commit f0631cb

Please sign in to comment.