From 2b178663ee448229f6704d8d53e1f0310391b3d1 Mon Sep 17 00:00:00 2001 From: Andrey Aristov <aaristov@pasteur.fr> Date: Wed, 23 Nov 2022 11:54:05 +0100 Subject: [PATCH] remove formatting otherwise non-integer concentrations give errors --- align.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/align.py b/align.py index a04c738..6a53e39 100644 --- a/align.py +++ b/align.py @@ -38,7 +38,7 @@ def align_multichip( else: rotation_data_deg = 0 - tif_paths = [f'{os.path.dirname(BF_TRITC_2D_path)}/{c:02d}{unit}_aligned.tif' for c in concentrations] + tif_paths = [f'{os.path.dirname(BF_TRITC_2D_path)}/{c}{unit}_aligned.tif' for c in concentrations] print('tif_paths: ', tif_paths) data = read_dask(BF_TRITC_2D_path) -- GitLab