diff --git a/README.md b/README.md index a7b6ab3..5e61111 100755 --- a/README.md +++ b/README.md @@ -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 diff --git a/stream/tests/stream_run_test.py b/stream/tests/stream_run_test.py index da20176..d25025d 100644 --- a/stream/tests/stream_run_test.py +++ b/stream/tests/stream_run_test.py @@ -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: