Skip to content

Commit

Permalink
commmented out debugging steps in testing
Browse files Browse the repository at this point in the history
  • Loading branch information
huidongchen committed Jun 2, 2020
1 parent 2626d31 commit e71dcf1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Latest News
> Jun 1, 2020
Version 1.0 is now available. The v1.0 has added a lot of new functionality:
1) added QC plots
1) added QC metrics and plots
2) added support of scATAC-seq analysis using peaks as features
3) added support of interactive plots with plotly
4) redesigned all plotting-related functions
Expand Down
10 changes: 5 additions & 5 deletions stream/tests/stream_run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ def stream_test_Nestorowa_2016():
else:
checklist = list()
df_ref = pd.read_csv(os.path.join(ref_temp_folder,file),sep='\t')
print(df_ref.shape)
print(df_ref.head())
# print(df_ref.shape)
# print(df_ref.head())
df_comp = pd.read_csv(os.path.join(comp_temp_folder,file),sep='\t')
print(df_comp.shape)
print(df_comp.head())
# print(df_comp.shape)
# print(df_comp.head())
for c in df_ref.columns:
print(c)
# print(c)
if(is_numeric_dtype(df_ref[c])):
checklist.append(all(np.isclose(df_ref[c],df_comp[c])))
else:
Expand Down

0 comments on commit e71dcf1

Please sign in to comment.