From d873896f316fec02131f44d994ac0c695a6cdfb6 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 1 Nov 2021 17:28:46 +0000 Subject: [PATCH] read bdio adjusted to new bookkeeping system --- pyerrors/input/bdio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/input/bdio.py b/pyerrors/input/bdio.py index 58d4a5e3..4c4eec03 100644 --- a/pyerrors/input/bdio.py +++ b/pyerrors/input/bdio.py @@ -148,7 +148,7 @@ def read_ADerrors(file_path, bdio_path='./libbdio.so', **kwargs): for loc_id, reps in zip(ids, no_reps): for index in range(reps): missing_chars = ens_length - len(str(loc_id)) - tmp_names.append(str(loc_id) + ' ' * missing_chars + 'r' + '{0:03d}'.format(index)) + tmp_names.append(str(loc_id) + ' ' * missing_chars + '|r' + '{0:03d}'.format(index)) return_list.append(Obs(samples, tmp_names))