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

Update test with correct comparison syntax.

parent 79526d57
No related merge requests found
...@@ -11,9 +11,9 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \ ...@@ -11,9 +11,9 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
def test_convert_reads_singleend(): def test_convert_reads_singleend():
assert os.path.exists(os.path.join(test_output_path, 'ENCFF833BLU.filt.nodup.tagAlign.15.tagAlign.gz.cc.plot.pdf')) assert os.path.exists(os.path.join(test_output_path, 'ENCFF833BLU.filt.nodup.tagAlign.15.tagAlign.gz.cc.plot.pdf'))
df_xcor = pd.read_csv("ENCFF833BLU.filt.nodup.tagAlign.15.tagAlign.gz.cc.qc", sep="\t", header=None) df_xcor = pd.read_csv("ENCFF833BLU.filt.nodup.tagAlign.15.tagAlign.gz.cc.qc", sep="\t", header=None)
assert df_xcor[2].iloc[0] = '195,215,230' assert df_xcor[2].iloc[0] == '195,215,230'
assert df_xcor[8].iloc[0] = 1.024836 assert df_xcor[8].iloc[0] == 1.024836
assert df_xcor[9].iloc[0] = 1.266678 assert df_xcor[9].iloc[0] == 1.266678
def test_map_qc_pairedend(): def test_map_qc_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