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

Remove extra parathesis

parent ea9dc8e6
Branches
Tags
No related merge requests found
......@@ -23,7 +23,7 @@ def test_annotate_peaks_singleend():
assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC.chipseeker_pie.pdf'))
assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC.chipseeker_pie.pdf'))
annotation_file = test_output_path + 'ENCSR238SGC.chipseeker_annotation.csv'
assert os.path.exists(annotation_file))
assert os.path.exists(annotation_file)
assert utils.count_lines(annotation_file) == 152839
......@@ -33,5 +33,5 @@ def test_annotate_peaks_pairedend():
assert os.path.exists(os.path.join(test_output_path, 'ENCSR217LRF.chipseeker_pie.pdf'))
assert os.path.exists(os.path.join(test_output_path, 'ENCSR217LRF.chipseeker_pie.pdf'))
annotation_file = test_output_path + 'ENCSR217LRF.chipseeker_annotation.csv'
assert os.path.exists(annotation_file))
assert os.path.exists(annotation_file)
assert utils.count_lines(annotation_file) == 25390
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