From 9d887546b89c1a1534782471176e2313ecf6f223 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Mon, 29 Jul 2019 12:51:02 -0500 Subject: update run-fit to write output files with suffix hdf5 --- src/run-fit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/run-fit b/src/run-fit index 203aa59..d309cd3 100755 --- a/src/run-fit +++ b/src/run-fit @@ -6,7 +6,7 @@ from os.path import splitext, split def run_fit(filename): head, tail = split(filename) root, ext = splitext(tail) - output = root + '.txt' + output = root + '.hdf5' cmd = ["./fit", filename, "-o", output] subprocess.call(cmd) -- cgit