-
Notifications
You must be signed in to change notification settings - Fork 536
enh: allow uses_qform in FLIRT, ApplyXFM interfaces #1875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
67b9d73
fix: auto test
mgxd a320cc5
fix: allow uses_qform for apply_xfm matrix
mgxd 1156e3c
tst: updated flirt test
mgxd 50e1dfc
tst: updated autotests
mgxd 8e65903
Merge branch 'master' of https://github.com/nipy/nipype
mgxd 35a9b0b
Merge branch 'fix/flirt_xfm' of github.com:mgxd/nipype into fix/flirt…
mgxd 0de0296
fix: incorrect check
mgxd 2be737d
fix: missing args in test cmdline
mgxd 9d1b661
fix: string joining
mgxd 0ee9b72
fix: remove deprecated auto test
mgxd ba15d5f
fix: autotest conflict
mgxd 2537030
fix: use deepcopy
mgxd 7d5a161
Merge branch 'master' of https://github.com/nipy/nipype into fix/flir…
mgxd b639ef5
Merge branch 'master' of https://github.com/nipy/nipype into fix/flir…
mgxd 877f64e
Merge branch 'master' of https://github.com/nipy/nipype into fix/flir…
mgxd 4bfea53
fix: autotest causing fail
mgxd f266c83
Merge branch 'fix/flirt_xfm' of github.com:mgxd/nipype into fix/flirt…
mgxd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this be
if not isdefined(self.inputs.in_matrix_file) and not (isdefined(self.inputs.uses_qform) and not self.inputs.uses_qform)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is
isdefined
necessary in this case? I added a test for both cases of using apply_xfmThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what if someone sets them to
Undefined
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
however the check with
not
appears to work nowThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
haven't figured out why yet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@satra should this be changed?