Skip to content

Commit 9d070eb

Browse files
authored
Merge pull request #285 from nipreps/dep/preps
DEP: Test with latest preps
2 parents 7abcb1f + d78546f commit 9d070eb

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

nibabies/workflows/bold/base.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,9 @@ def init_func_preproc_wf(bold_file, has_fieldmap=False, existing_derivatives=Non
11561156
("outputnode.boldref_file", "inputnode.target_ref")]),
11571157
(initial_boldref_wf, coeff2epi_wf, [
11581158
("outputnode.boldref_mask", "inputnode.target_mask")]), # skull-stripped brain
1159+
(initial_boldref_wf, unwarp_wf, [
1160+
("outputnode.boldref_file", "inputnode.distorted_ref"),
1161+
]),
11591162
(coeff2epi_wf, unwarp_wf, [
11601163
("outputnode.fmap_coeff", "inputnode.fmap_coeff")]),
11611164
(initial_boldref_wf, sdc_report, [("outputnode.boldref_file", "before")]),
@@ -1181,11 +1184,11 @@ def init_func_preproc_wf(bold_file, has_fieldmap=False, existing_derivatives=Non
11811184
]),
11821185
(unwarp_wf, bold_t1_trans_wf, [
11831186
# TEMPORARY: For the moment we can't use frame-wise fieldmaps
1184-
(("outputnode.fieldwarp", pop_file), "inputnode.fieldwarp"),
1187+
(("outputnode.fieldwarp_ref", pop_file), "inputnode.fieldwarp"),
11851188
]),
11861189
(unwarp_wf, bold_std_trans_wf, [
11871190
# TEMPORARY: For the moment we can't use frame-wise fieldmaps
1188-
(("outputnode.fieldwarp", pop_file), "inputnode.fieldwarp"),
1191+
(("outputnode.fieldwarp_ref", pop_file), "inputnode.fieldwarp"),
11891192
]),
11901193
])
11911194
# fmt:on

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,18 @@ dependencies = [
2424
"nipype >= 1.8.1",
2525
"nitime",
2626
"nitransforms >= 21.0.0",
27-
"niworkflows ~= 1.7.1",
27+
# "niworkflows ~= 1.7.9",
28+
"niworkflows @ git+https://github.com/nipreps/niworkflows.git@master",
2829
"numpy >= 1.21.0",
2930
"packaging",
3031
"pandas",
3132
"psutil >= 5.4",
3233
"pybids >= 0.15.0",
3334
"requests",
34-
"sdcflows ~= 2.2.2",
35-
"smriprep ~= 0.11.0",
35+
# "sdcflows ~= 2.4.3",
36+
"sdcflows @ git+https://github.com/nipreps/sdcflows.git@master",
37+
# "smriprep ~= 0.11.0",
38+
"smriprep @ git+https://github.com/nipreps/smriprep.git@master",
3639
"tedana ~= 0.0.12",
3740
"templateflow >= 0.6",
3841
"toml",

0 commit comments

Comments
 (0)