From f02fccecbc16c2d81d09cc4e7b7d6700546d075c Mon Sep 17 00:00:00 2001 From: Venkat Malladi <venkat.malladi@utsouthwestern.edu> Date: Sat, 18 Nov 2017 16:12:42 -0600 Subject: [PATCH] Change string to numeric for number of peaks. --- workflow/tests/test_call_peaks_macs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/tests/test_call_peaks_macs.py b/workflow/tests/test_call_peaks_macs.py index e9a876d..aba3570 100644 --- a/workflow/tests/test_call_peaks_macs.py +++ b/workflow/tests/test_call_peaks_macs.py @@ -12,7 +12,7 @@ def test_call_peaks_macs_singleend(): assert os.path.exists(os.path.join(test_output_path, 'ENCLB144FDT.fc_signal.bw')) assert os.path.exists(os.path.join(test_output_path, 'ENCLB144FDT.pvalue_signal.bw')) peak_file = test_output_path + 'ENCLB144FDT_peaks.narrowPeak' - assert utils.count_lines(peak_file) == '210349' + assert utils.count_lines(peak_file) == 210349 def test_call_peaks_macs_pairedend(): -- GitLab