Skip to content
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Changing NiftySegCommand to use NiftyFitCommand instead since no omp_…
…core_val present
  • Loading branch information
byvernault committed May 11, 2017
commit 4757bec1a0237d7c3032f0af43859e356e207f37
5 changes: 3 additions & 2 deletions nipype/interfaces/niftyseg/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
See the docstrings of the individual classes for examples.
"""

from nipype.interfaces.niftyreg.base import NiftyRegCommand, no_nifty_package
from nipype.interfaces.niftyreg.base import no_nifty_package
from nipype.interfaces.niftyfit.base import NiftyFitCommand
import subprocess
import warnings

Expand All @@ -25,7 +26,7 @@
warnings.filterwarnings('always', category=UserWarning)


class NiftySegCommand(NiftyRegCommand):
class NiftySegCommand(NiftyFitCommand):
"""
Base support interface for NiftySeg commands.
"""
Expand Down