Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Oct 9, 2024
1 parent cc1ec76 commit fe760f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xcp_d/workflows/bold/concatenation.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,9 @@ def init_concatenate_data_wf(TR, head_radius, name="concatenate_data_wf"):
name="cifti_ts_src",
iterfield=["in1"],
)
workflow.connect([(filter_runs, cifti_ts_src, [("timeseries_ciftis", "in1")])])
workflow.connect([
(filter_runs, cifti_ts_src, [(("timeseries_ciftis", _transpose_lol), "in1")]),
]) # fmt:skip

ds_cifti_ts = pe.MapNode(
DerivativesDataSink(
Expand Down

0 comments on commit fe760f0

Please sign in to comment.