-
Notifications
You must be signed in to change notification settings - Fork 533
ENH: added Apply VDM functionality to FieldMap SPM interface #3394
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
13 commits
Select commit
Hold shift + click to select a range
5df9ce8
merged my changes from 2019 into the new version of nipype
bb56150
Merge remote-tracking branch 'upstream/master'
a57cdc2
run the make check-before-commit and edited the .zenodo file
674e9b0
run black on the preprocess.py file to improve formatting
411b58b
Revert "run the make check-before-commit and edited the .zenodo file"
65863b8
added my name to zenodo
7929843
test_auto_FieldMap.py automatically added
83fda45
separate apply and calculate VDM in two classes
9bcf65c
added auto tests
2e4bc83
now black-reformatted
f791fc1
* edited preprocess according to nipype team suggestions
f50b1ca
auto tests added to commit
4575810
Update nipype/interfaces/spm/preprocess.py
fabioboh 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT | ||
from ..preprocess import ApplyVDM | ||
|
||
|
||
def test_ApplyVDM_inputs(): | ||
input_map = dict( | ||
distortion_direction=dict( | ||
field="roptions.pedir", | ||
usedefault=True, | ||
), | ||
in_files=dict( | ||
copyfile=True, | ||
field="data.scans", | ||
mandatory=True, | ||
), | ||
interpolation=dict( | ||
field="roptions.rinterp", | ||
), | ||
matlab_cmd=dict(), | ||
mfile=dict( | ||
usedefault=True, | ||
), | ||
out_prefix=dict( | ||
field="roptions.prefix", | ||
usedefault=True, | ||
), | ||
paths=dict(), | ||
use_mcr=dict(), | ||
use_v8struct=dict( | ||
min_ver="8", | ||
usedefault=True, | ||
), | ||
vdmfile=dict( | ||
copyfile=True, | ||
extensions=None, | ||
field="data.vdmfile", | ||
mandatory=True, | ||
), | ||
write_mask=dict( | ||
field="roptions.mask", | ||
), | ||
write_which=dict( | ||
field="roptions.which", | ||
maxlen=2, | ||
minlen=2, | ||
usedefault=True, | ||
), | ||
write_wrap=dict( | ||
field="roptions.wrap", | ||
), | ||
) | ||
inputs = ApplyVDM.input_spec() | ||
|
||
for key, metadata in list(input_map.items()): | ||
for metakey, value in list(metadata.items()): | ||
assert getattr(inputs.traits()[key], metakey) == value | ||
|
||
|
||
def test_ApplyVDM_outputs(): | ||
output_map = dict( | ||
mean_image=dict( | ||
extensions=None, | ||
), | ||
out_files=dict(), | ||
) | ||
outputs = ApplyVDM.output_spec() | ||
|
||
for key, metadata in list(output_map.items()): | ||
for metakey, value in list(metadata.items()): | ||
assert getattr(outputs.traits()[key], metakey) == value |
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.
Uh oh!
There was an error while loading. Please reload this page.