Skip to content
Snippets Groups Projects
Commit f5d6cae7 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'bf/bids' into 'master'

Bf/bids

See merge request fsl/fslpy!194
parents e26fd9a1 a302be8f
No related branches found
No related tags found
No related merge requests found
Pipeline #4954 passed
...@@ -2,6 +2,17 @@ This document contains the ``fslpy`` release history in reverse chronological ...@@ -2,6 +2,17 @@ This document contains the ``fslpy`` release history in reverse chronological
order. order.
2.8.1 (Under development)
-------------------------
Fixed
^^^^^
* Fixed a bug where an error would be raised on attempts to load an image file
without a BIDS-compatible name from a BIDS-like directory.
2.8.0 (Wednesday 29th January 2020) 2.8.0 (Wednesday 29th January 2020)
----------------------------------- -----------------------------------
......
...@@ -1540,7 +1540,8 @@ def loadMetadata(image): ...@@ -1540,7 +1540,8 @@ def loadMetadata(image):
basename = op.basename(removeExt(filename)) basename = op.basename(removeExt(filename))
dirname = op.dirname(filename) dirname = op.dirname(filename)
if fslbids.inBIDSDir(image.dataSource): if fslbids.isBIDSFile(image.dataSource) and \
fslbids.inBIDSDir( image.dataSource):
return fslbids.loadMetadata(image.dataSource) return fslbids.loadMetadata(image.dataSource)
jsonfile = op.join(dirname, '{}.json'.format(basename)) jsonfile = op.join(dirname, '{}.json'.format(basename))
......
...@@ -1401,6 +1401,25 @@ def test_loadMeta(): ...@@ -1401,6 +1401,25 @@ def test_loadMeta():
assert img.getMeta('b') == 2 assert img.getMeta('b') == 2
def test_loadMeta_nonBids():
with tempdir():
# non-bids file in a BIDS-like directory
imgfile = op.join('data', 'sub-01', 'anat', 'sub-01_T1w_nonbids.nii.gz')
os.makedirs(op.dirname(imgfile))
make_image(imgfile)
with open(op.join('data', 'dataset_description.json'), 'wt') as f:
pass
img = fslimage.Image(imgfile, loadMeta=True)
assert list(img.metaKeys()) == []
def test_loadMetadata(): def test_loadMetadata():
with tempdir(): with tempdir():
make_image('image.nii.gz') make_image('image.nii.gz')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment