Skip to content

Commit 9235266

Browse files
authored
Merge pull request #3010 from bilgelm/master
FIX: Specify correct stop criterion flag in PETPVC
2 parents 23300e9 + d18b159 commit 9235266

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nipype/interfaces/petpvc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class PETPVCInputSpec(CommandLineInputSpec):
5656
argstr="-a %.4f")
5757
stop_crit = traits.Float(
5858
desc="Stopping criterion", default_value=0.01, usedefault=True,
59-
argstr="-a %.4f")
59+
argstr="-s %.4f")
6060

6161

6262
class PETPVCOutputSpec(TraitedSpec):

nipype/interfaces/tests/test_auto_PETPVC.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_PETPVC_inputs():
5959
mandatory=True,
6060
),
6161
stop_crit=dict(
62-
argstr='-a %.4f',
62+
argstr='-s %.4f',
6363
usedefault=True,
6464
),
6565
)

0 commit comments

Comments
 (0)