Skip to content

Commit eede40e

Browse files
committed
Work on workflow graphs more.
1 parent 146a970 commit eede40e

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

xcp_d/workflows/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def init_single_subject_wf(subject_id: str, anat_session: str, func_sessions: li
116116
from xcp_d.workflows.base import init_single_subject_wf
117117
118118
with mock_config():
119-
wf = init_single_subject_wf("01", "01", ["01"])
119+
wf = init_single_subject_wf("01", "", [""])
120120
121121
Parameters
122122
----------

xcp_d/workflows/bold/cifti.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ def init_postprocess_cifti_wf(
6565
layout=layout,
6666
bold_file=bold_file,
6767
file_format="cifti",
68-
target_space="fsLR",
68+
target_space="MNI152NLin2009cAsym",
6969
)
70+
run_data['confounds'] = None
7071
7172
from xcp_d.utils.utils import _create_mem_gb
7273

xcp_d/workflows/bold/nifti.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def init_postprocess_nifti_wf(
7070
file_format="nifti",
7171
target_space="MNI152NLin2009cAsym",
7272
)
73+
run_data['confounds'] = None
7374
7475
from xcp_d.utils.utils import _create_mem_gb
7576

xcp_d/workflows/bold/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def init_qc_report_wf(
4646
wf = init_qc_report_wf(
4747
TR=0.5,
4848
head_radius=50,
49-
mem_gb={"bold": 1.0},
49+
mem_gb={"bold": 1.0, "volume": 0.1},
5050
name="qc_report_wf",
5151
)
5252

0 commit comments

Comments
 (0)