From 4dbedfbd30f7dd75090a53dfd7adf526334db5ce Mon Sep 17 00:00:00 2001 From: Venkat Malladi <venkat.malladi@utsouthwestern.edu> Date: Tue, 23 Apr 2019 07:47:46 -0500 Subject: [PATCH] Fix test peak number. --- workflow/tests/test_annotate_peaks.py | 2 +- workflow/tests/test_overlap_peaks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/tests/test_annotate_peaks.py b/workflow/tests/test_annotate_peaks.py index 3df797b..1342a12 100644 --- a/workflow/tests/test_annotate_peaks.py +++ b/workflow/tests/test_annotate_peaks.py @@ -24,7 +24,7 @@ def test_upsetplot_singleend(): def test_annotation_singleend(): annotation_file = test_output_path + 'ENCSR238SGC.chipseeker_annotation.tsv' assert os.path.exists(annotation_file) - assert utils.count_lines(annotation_file) == 149284 + assert utils.count_lines(annotation_file) == 152255 @pytest.mark.pairedend diff --git a/workflow/tests/test_overlap_peaks.py b/workflow/tests/test_overlap_peaks.py index 411bfd0..ff61c93 100644 --- a/workflow/tests/test_overlap_peaks.py +++ b/workflow/tests/test_overlap_peaks.py @@ -37,7 +37,7 @@ def test_check_update_design(design_diff): def test_overlap_peaks_singleend(): assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC.rejected.narrowPeak')) peak_file = test_output_path + 'ENCSR238SGC.replicated.narrowPeak' - assert utils.count_lines(peak_file) == 149291 + assert utils.count_lines(peak_file) == 152262 @pytest.mark.pairedend -- GitLab