Skip to content

Commit 4a90e70

Browse files
Merge tag '1.3.0' into halfpipe
1.3.0 First release in the 1.3.x series. This release includes enhancements and bug-fixes towards the release of the first LTS (*long-term support*) version of *fMRIPrep*. *PyBIDS* has been revised to use more recent versions, a series of ANTs' interfaces have been deemed ready to upstream into *Nipype*, and several improvements regarding multi-echo EPI are included. With thanks to Basile Pinsard for contributions. * FIX: Patch ``ApplyTransforms`` spec to permit identity in a chain (nipreps#554) * FIX: Add dots to extensions in PyBIDS' config file (nipreps#548) * FIX: Segmentation plots aligned with cardinal axes (nipreps#544) * FIX: Skip T1w file existence check if ``anat_derivatives`` are provided (nipreps#545) * FIX: Avoid diverting CIFTI dtype from original BOLD (nipreps#532) * ENH: Add ``smooth`` input to ``RegridToZooms`` (nipreps#549) * ENH: Enable ``DerivativesDataSink`` to take multiple source files to derive entities (nipreps#547) * ENH: Allow ``bold_reference_wf`` to accept multiple EPIs/SBRefs (nipreps#408) * ENH: Numerical stability of EPI brain-masks using probabilistic prior (nipreps#485) * ENH: Add a pure-Python interface to resample to specific resolutions (nipreps#511) * MAINT: Upstream all bug-fixes in the 1.2.9 release * MAINT: Finalize upstreaming of ANTs' interfaces to Nipype (nipreps#550) * MAINT: Update to Python +3.6 (nipreps#541)
2 parents 88a51c8 + 9c3eb81 commit 4a90e70

File tree

4 files changed

+32
-20
lines changed

4 files changed

+32
-20
lines changed

CHANGES.rst

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,34 @@
1-
1.3.0 (TBD)
2-
===========
3-
First release in the 1.3.x series. This release includes enhancements and bug-fixes
4-
towards the release of the first LTS version of fMRIPrep.
5-
PyBIDS has been revised to use more recent versions, a series of ANTs' interfaces
6-
have been deemed ready to upstream into Nipype, and several improvements regarding
1+
1.3.0 (September 11, 2020)
2+
==========================
3+
First release in the 1.3.x series.
4+
This release includes enhancements and bug-fixes towards the release of the first
5+
LTS (*long-term support*) version of *fMRIPrep*.
6+
*PyBIDS* has been revised to use more recent versions, a series of ANTs' interfaces
7+
have been deemed ready to upstream into *Nipype*, and several improvements regarding
78
multi-echo EPI are included.
89
With thanks to Basile Pinsard for contributions.
910

10-
* FIX: Patch ``ApplyTransforms`` spec to permit identity in a chain (#554)
11-
* FIX: Add dots to extensions in PyBIDS' config file (#548)
12-
* FIX: Segmentation plots aligned with cardinal axes (#544)
13-
* FIX: Skip T1w file existence check if ``anat_derivatives`` are provided (#545)
14-
* FIX: Avoid diverting CIFTI dtype from original BOLD (#532)
15-
* ENH: Add ``smooth`` input to ``RegridToZooms`` (#549)
16-
* ENH: Enable ``DerivativesDataSink`` to take multiple source files to derive entities (#547)
17-
* ENH: Allow ``bold_reference_wf`` to accept multiple EPIs/SBRefs (#408)
18-
* ENH: Numerical stability of EPI brain-masks using probabilistic prior (#485)
19-
* ENH: Add a pure-Python interface to resample to specific resolutions (#511)
20-
* MAINT: Finalize upstreaming of ANTs' interfaces to Nipype (#550)
21-
* MAINT: Update to Python +3.6 (#541)
11+
* FIX: Patch ``ApplyTransforms`` spec to permit identity in a chain (#554)
12+
* FIX: Add dots to extensions in PyBIDS' config file (#548)
13+
* FIX: Segmentation plots aligned with cardinal axes (#544)
14+
* FIX: Skip T1w file existence check if ``anat_derivatives`` are provided (#545)
15+
* FIX: Avoid diverting CIFTI dtype from original BOLD (#532)
16+
* ENH: Add ``smooth`` input to ``RegridToZooms`` (#549)
17+
* ENH: Enable ``DerivativesDataSink`` to take multiple source files to derive entities (#547)
18+
* ENH: Allow ``bold_reference_wf`` to accept multiple EPIs/SBRefs (#408)
19+
* ENH: Numerical stability of EPI brain-masks using probabilistic prior (#485)
20+
* ENH: Add a pure-Python interface to resample to specific resolutions (#511)
21+
* MAINT: Upstream all bug-fixes in the 1.2.9 release
22+
* MAINT: Finalize upstreaming of ANTs' interfaces to Nipype (#550)
23+
* MAINT: Update to Python +3.6 (#541)
24+
25+
1.2.9 (September 11, 2020)
26+
==========================
27+
Bug-fix release in the 1.2.x series with very minor problems addressed.
28+
29+
* FIX: Reportlets would crash in edge condition (#566)
30+
* FIX: AROMA metadata ``CsfFraction`` -> ``CSFFraction`` (#563)
31+
* FIX: Add DWI nonstandard spaces (#565)
2232

2333
1.2.8 (September 03, 2020)
2434
==========================

niworkflows/interfaces/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ def less_breakable(a_string):
967967
for i in tsv_data.index
968968
]
969969
tsv_data.columns = [
970-
re.sub(re_to_camel, camel, less_breakable(i).title(), 0)
970+
re.sub(re_to_camel, camel, less_breakable(i).title(), 0).replace("Csf", "CSF")
971971
for i in tsv_data.columns
972972
]
973973
json_data = tsv_data.to_json(orient="index")

niworkflows/utils/spaces.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
"run",
1515
"sbref",
1616
"session",
17+
"individual",
18+
"dwi",
1719
]
1820
"""List of supported nonstandard reference spaces."""
1921

niworkflows/viz/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def cuts_from_bbox(mask_nii, cuts=3):
175175
smin, smax = (0, mask_data.shape[ax] - 1)
176176

177177
B = np.argwhere(c > th)
178-
if not B.size: # Threshold too high
178+
if B.size < cuts: # Threshold too high
179179
B = np.argwhere(c > 0)
180180
if B.size:
181181
smin, smax = B.min(), B.max()

0 commit comments

Comments
 (0)