Skip to content

Commit 71d8a57

Browse files
oestebanmgxd
andcommittedOct 30, 2019
Apply suggestions from code review
Co-Authored-By: Mathias Goncalves <[email protected]>
1 parent f920efa commit 71d8a57

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed
 

‎nitransforms/io/fsl.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,14 @@ def from_string(cls, string):
103103

104104
@classmethod
105105
def from_filename(cls, filename):
106-
"""Read the struct from a file given its path."""
106+
"""
107+
Read the struct from a file given its path.
108+
109+
If the file does not exist, then indexed names
110+
with the zero-padded suffix ``.NNN`` are
111+
attempted, following FSL's MCFLIRT conventions.
112+
113+
"""
107114
if os.path.exists(str(filename)):
108115
return super().from_filename(filename)
109116

‎nitransforms/io/itk.py

+14-3
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,15 @@ def from_fileobj(cls, fileobj, check=True):
212212

213213
@classmethod
214214
def from_ras(cls, ras, moving=None, reference=None):
215-
"""Create an ITK affine from a nitransform's RAS+ matrix."""
215+
"""
216+
Create an ITK affine from a nitransform's RAS+ matrix.
217+
218+
The moving and reference parameters are included in this
219+
method's signature for a consistent API, but they have no
220+
effect on this particular method because ITK already uses
221+
RAS+ coordinates to describe transfroms internally.
222+
223+
"""
216224
_self = cls()
217225
_self.xforms = [cls._inner_type.from_ras(ras[i, ...], index=i)
218226
for i in range(ras.shape[0])]
@@ -225,8 +233,11 @@ def from_string(cls, string):
225233
lines = [l.strip() for l in string.splitlines()
226234
if l.strip()]
227235

228-
if not lines or not lines[0].startswith('#') or \
229-
'Insight Transform File V1.0' not in lines[0]:
236+
if (
237+
not lines or
238+
not lines[0].startswith('#') or
239+
'Insight Transform File V1.0' not in lines[0]
240+
):
230241
raise TransformFileError('Unknown Insight Transform File format.')
231242

232243
string = '\n'.join(lines[1:])

‎nitransforms/io/lta.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ def to_string(self):
177177
('{:18.15e} ' * 4).format(*sa['m_L'][2]),
178178
('{:18.15e} ' * 4).format(*sa['m_L'][3]),
179179
'src volume info',
180-
'%s' % self['src'],
180+
str(self['src']),
181181
'dst volume info',
182-
'%s' % self['dst'],
182+
str(self['dst']),
183183
]
184184
return '\n'.join(lines)
185185

0 commit comments

Comments
 (0)
Please sign in to comment.