From f83b29bf3d81df30a7c7486f3aab7210722ceb0e Mon Sep 17 00:00:00 2001 From: Viktor Palmkvist Date: Fri, 16 Jan 2026 11:00:48 +0100 Subject: [PATCH] Don't automatically add --resample, since it makes it impossible to run with non-smc --- treeppl/base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/treeppl/base.py b/treeppl/base.py index 14ea808..4c6073b 100644 --- a/treeppl/base.py +++ b/treeppl/base.py @@ -76,8 +76,6 @@ def __init__( args.append(f"--{k.replace('_', '-')}") if v is not True: args.append(str(v)) - if not "resample" in kwargs: - args.extend(["--resample", "align"]) with Popen( args=args, cwd=self.temp_dir.name, stdout=PIPE, stderr=STDOUT ) as proc: