Skip to content
Snippets Groups Projects
Commit f02fccec authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Change string to numeric for number of peaks.

parent 9ca5c5ff
No related merge requests found
......@@ -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():
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment