From 60e5156d9c7bce051662e1450311b367d26be1ef Mon Sep 17 00:00:00 2001 From: Fontrodona Nicolas <nicolas.fontrodona@ens-lyon.fr> Date: Mon, 16 Nov 2020 11:50:52 +0100 Subject: [PATCH] src/gc_content/gc_content.py: fix error to tests --- src/gc_content/gc_content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gc_content/gc_content.py b/src/gc_content/gc_content.py index fc4365e..b34e871 100644 --- a/src/gc_content/gc_content.py +++ b/src/gc_content/gc_content.py @@ -77,7 +77,7 @@ def get_many_gc_content(bed_line: List[Any], dic_seq: Fasta, {'interval': 50.0} >>> get_many_gc_content(["chr1", 10, 20, "s1", ".", "+"], ... dic_seq, 10) - {'before': 10.0, 'interval': 50.0, 'after': 0.0} + {'before': 100.0, 'interval': 50.0, 'after': 0.0} >>> get_many_gc_content(["chr1", 10, 20, "s1", ".", "-"], ... dic_seq, 10) {'before': 0.0, 'interval': 50.0, 'after': 100.0} -- GitLab