-
Notifications
You must be signed in to change notification settings - Fork 530
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
ENH: add interface for AFNI 3dTsmooth #2948
Conversation
nipype/interfaces/afni/preprocess.py
Outdated
>>> smooth.inputs.in_file = 'functional.nii' | ||
>>> smooth.inputs.adaptive = 5 | ||
>>> smooth.cmdline | ||
'3dTsmooth -prefix functional_smooth -adaptive 5 functional.nii' |
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.
'3dTsmooth -prefix functional_smooth -adaptive 5 functional.nii' | |
'3dTsmooth -adaptive 5 -prefix functional_smooth functional.nii' |
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.
Hi @gpiantoni, do you have a few minutes to finish this up?
nipype/interfaces/afni/preprocess.py
Outdated
desc='output file from 3dTSmooth', | ||
argstr='-prefix %s', | ||
name_source='in_file', | ||
genfile=True) |
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.
nipype/interfaces/afni/preprocess.py
Outdated
name_template='%s_smooth', | ||
desc='output file from 3dTSmooth', | ||
argstr='-prefix %s', | ||
name_source='in_file', |
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.
name_source='in_file', | |
name_source='in_file') |
Hi @gpiantoni, we're planning to have the next release in a little under 3 weeks, if you want to have a shot at finishing this up. |
Hi @gpiantoni, I re-ran |
Codecov Report
@@ Coverage Diff @@
## master #2948 +/- ##
==========================================
- Coverage 67.5% 66.99% -0.52%
==========================================
Files 344 343 -1
Lines 44028 44027 -1
Branches 5551 5548 -3
==========================================
- Hits 29723 29496 -227
- Misses 13556 13780 +224
- Partials 749 751 +2
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #2948 +/- ##
==========================================
- Coverage 67.5% 66.99% -0.52%
==========================================
Files 344 343 -1
Lines 44028 44026 -2
Branches 5551 5548 -3
==========================================
- Hits 29723 29495 -228
- Misses 13556 13780 +224
- Partials 749 751 +2
Continue to review full report at Codecov.
|
nipype/interfaces/slicer/registration/tests/test_auto_VBRAINSDemonWarp.py
Outdated
Show resolved
Hide resolved
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.
LGTM. Will merge when tests pass.
Thanks for your patience, @gpiantoni. In it goes. |
Summary
add interface for AFNI 3dTsmooth
List of changes proposed in this PR (pull-request)
Acknowledgment