From 7f082ef843d73e59104e26ab1ae4a87d942620d0 Mon Sep 17 00:00:00 2001 From: Venkat Malladi <venkat.malladi@utsouthwestern.edu> Date: Tue, 8 Jan 2019 09:29:37 -0600 Subject: [PATCH] Update number of peaks. --- 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 0b0d8f1..6fd5c13 100644 --- a/workflow/tests/test_annotate_peaks.py +++ b/workflow/tests/test_annotate_peaks.py @@ -16,7 +16,7 @@ def test_annotate_peaks_singleend(): assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC.chipseeker_upsetplot.pdf')) annotation_file = test_output_path + 'ENCSR238SGC.chipseeker_annotation.csv' assert os.path.exists(annotation_file) - assert utils.count_lines(annotation_file) == 149820 + assert utils.count_lines(annotation_file) == 152840 @pytest.mark.pairedend diff --git a/workflow/tests/test_overlap_peaks.py b/workflow/tests/test_overlap_peaks.py index ccbf186..99d43b8 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) == 149828 + assert utils.count_lines(peak_file) == 152848 @pytest.mark.pairedend -- GitLab