Skip to content

Commit 3053703

Browse files
committed
updating tests
1 parent 4198b65 commit 3053703

5 files changed

+17
-17
lines changed

diff_viz/tests/test_data_loading.py

+11-11
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import numpy as np
66
from diff_viz.data_loading import check_mpt_data, clean_mpt_data, combine_csvs
77
from hypothesis import HealthCheck, given, settings, strategies as st
8-
from diff_viz.tests.hypothesis_util_functions import features_dataframe
8+
from diff_viz.tests.hypothesis_util_functions import hypothesis_features_dataframe
99

10-
df = features_dataframe()
10+
df = hypothesis_features_dataframe()
1111

1212
@given(df)
1313
@settings(suppress_health_check=[HealthCheck.large_base_example, HealthCheck.too_slow])
@@ -50,15 +50,15 @@ def test_clean_mpt_data(df):
5050

5151
def test_combine_csvs():
5252
file_list = [
53-
'diff_viz/tests/testing_data/features_P14_40nm_s1_v1.csv',
54-
'diff_viz/tests/testing_data/features_P14_40nm_s1_v2.csv',
55-
'diff_viz/tests/testing_data/features_P14_40nm_s1_v3.csv',
56-
'diff_viz/tests/testing_data/features_P35_brain_2_slice_1_vid_1.csv',
57-
'diff_viz/tests/testing_data/features_P35_brain_2_slice_1_vid_2.csv',
58-
'diff_viz/tests/testing_data/features_P35_brain_2_slice_1_vid_3.csv',
59-
'diff_viz/tests/testing_data/features_P70_40nm_s1_v1.csv',
60-
'diff_viz/tests/testing_data/features_P70_40nm_s1_v2.csv',
61-
'diff_viz/tests/testing_data/features_P70_40nm_s1_v3.csv',
53+
'diff_viz/tests/testing_data/feature_data/features_P14_40nm_s1_v1.csv',
54+
'diff_viz/tests/testing_data/feature_data/features_P14_40nm_s1_v2.csv',
55+
'diff_viz/tests/testing_data/feature_data/features_P14_40nm_s1_v3.csv',
56+
'diff_viz/tests/testing_data/feature_data/features_P35_brain_2_slice_1_vid_1.csv',
57+
'diff_viz/tests/testing_data/feature_data/features_P35_brain_2_slice_1_vid_2.csv',
58+
'diff_viz/tests/testing_data/feature_data/features_P35_brain_2_slice_1_vid_3.csv',
59+
'diff_viz/tests/testing_data/feature_data/features_P70_40nm_s1_v1.csv',
60+
'diff_viz/tests/testing_data/feature_data/features_P70_40nm_s1_v2.csv',
61+
'diff_viz/tests/testing_data/feature_data/features_P70_40nm_s1_v3.csv',
6262
]
6363

6464
def helper_func():

diff_viz/tests/test_diff_utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from diff_viz.diff_utils import *
22

3-
file_path = 'diff_viz/tests/testing_data/'
3+
file_path = 'diff_viz/tests/testing_data/msd_data/'
44

55
def test_get_experiment():
66
date = '2019_01_01'
@@ -32,15 +32,15 @@ def test_get_geo_dict(file_path=file_path):
3232
def test_get_geo_df_geomean(file_path=file_path):
3333

3434
#test geomean
35-
geo_df = get_geo_df(file_path, filetype='geomean', doses=['1h', 'NT'], timepoints=['1d'], experiment=None)
35+
geo_df = get_geo_df(file_path, filetype='geomean', doses=['1h', 'NT'], timepoints=['1d'])
3636
assert geo_df.shape == (650, 2)
3737
assert geo_df.columns[0] == '1h_1d'
3838
assert geo_df.columns[1] == 'NT_1d'
3939

4040

4141
def test_get_geo_df_geoSEM(file_path=file_path):
4242
#test geosem
43-
geo_df = get_geo_df(file_path, filetype='geoSEM', doses=['1h', 'NT'], timepoints=['1d'], experiment=None)
43+
geo_df = get_geo_df(file_path, filetype='geoSEM', doses=['1h', 'NT'], timepoints=['1d'])
4444
assert geo_df.shape == (650, 2)
4545
assert geo_df.columns[0] == '1h_1d'
4646
assert geo_df.columns[1] == 'NT_1d'

diff_viz/tests/test_diffusion_modes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import matplotlib.pyplot as plt
88

99
# Set up the testing data
10-
testing_data_path = '../diff_viz/diff_viz/tests/testing_data/'
10+
testing_data_path = '../diff_viz/diff_viz/tests/testing_data/feature_data/'
1111
striatum_file = 'features_60X_Striatum_Slice2_Video1.csv'
1212
cortex_file = 'features_100X_OGD_Cortex_Slice2_Video1.csv'
1313
df_striat = pd.read_csv(testing_data_path+striatum_file)

diff_viz/tests/test_feature_distribution_plots.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import matplotlib.pyplot as plt
88

99
# Set up the testing data
10-
testing_data_path = '../diff_viz/diff_viz/tests/testing_data/'
10+
testing_data_path = '../diff_viz/diff_viz/tests/testing_data/feature_data/'
1111
striatum_file = 'features_60X_Striatum_Slice2_Video1.csv'
1212
cortex_file = 'features_100X_OGD_Cortex_Slice2_Video1.csv'
1313
df_striat = pd.read_csv(testing_data_path+striatum_file)

diff_viz/tests/test_pca_plots.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import matplotlib.pyplot as plt
88

99
# Set up the testing data
10-
testing_data_path = '../diff_viz/diff_viz/tests/testing_data/'
10+
testing_data_path = '../diff_viz/diff_viz/tests/testing_data/feature_data/'
1111
striatum_file = 'features_60X_Striatum_Slice2_Video1.csv'
1212
cortex_file = 'features_100X_OGD_Cortex_Slice2_Video1.csv'
1313
df_striat = pd.read_csv(testing_data_path+striatum_file)

0 commit comments

Comments
 (0)