From b1dbf2887bd95cdd0832e255025afb794936b4f8 Mon Sep 17 00:00:00 2001 From: Venkat Malladi <venkat.malladi@utsouthwestern.edu> Date: Wed, 9 Jan 2019 11:47:24 -0600 Subject: [PATCH] Fix annotate length. --- workflow/tests/test_annotate_peaks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/tests/test_annotate_peaks.py b/workflow/tests/test_annotate_peaks.py index fa5c241..e698133 100644 --- a/workflow/tests/test_annotate_peaks.py +++ b/workflow/tests/test_annotate_peaks.py @@ -25,4 +25,4 @@ def test_annotate_peaks_pairedend(): assert os.path.exists(os.path.join(test_output_path, 'ENCSR729LGA.chipseeker_upsetplot.pdf')) annotation_file = test_output_path + 'ENCSR729LGA.chipseeker_annotation.csv' assert os.path.exists(annotation_file) - assert utils.count_lines(annotation_file) == 25391 + assert utils.count_lines(annotation_file) == 25614 -- GitLab