Skip to content

Commit

Permalink
Update base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Nov 9, 2023
1 parent 05851d6 commit a70a0b1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions aslprep/workflows/asl/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""Preprocessing workflows for ASL data."""
import nibabel as nb
from fmriprep.workflows.bold.base import get_estimator
from fmriprep.workflows.bold.confounds import init_carpetplot_wf
from fmriprep.workflows.bold.registration import init_bold_reg_wf
from fmriprep.workflows.bold.resampling import (
init_bold_fsLR_resampling_wf,
Expand All @@ -23,7 +24,7 @@
from aslprep.utils.bids import collect_run_data
from aslprep.utils.misc import _create_mem_gb, _get_wf_name
from aslprep.workflows.asl.cbf import init_compute_cbf_wf, init_parcellate_cbf_wf
from aslprep.workflows.asl.confounds import init_asl_confounds_wf, init_carpetplot_wf
from aslprep.workflows.asl.confounds import init_asl_confounds_wf
from aslprep.workflows.asl.hmc import init_asl_hmc_wf
from aslprep.workflows.asl.outputs import init_asl_derivatives_wf
from aslprep.workflows.asl.plotting import init_plot_cbf_wf
Expand Down Expand Up @@ -834,8 +835,6 @@ def _last(inlist):
]),
(asl_confounds_wf, carpetplot_wf, [
("outputnode.confounds_file", "inputnode.confounds_file"),
("outputnode.crown_mask", "inputnode.crown_mask"),
(("outputnode.acompcor_masks", _last), "inputnode.acompcor_mask"),
]),
])
# fmt:on
Expand Down

0 comments on commit a70a0b1

Please sign in to comment.