-
-
Notifications
You must be signed in to change notification settings - Fork 191
/
test_manhattan_plot.py
178 lines (142 loc) · 4.12 KB
/
test_manhattan_plot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
import pandas
import dash
import dash_bio
import dash_html_components as html
from common_features import nested_component_layout, \
nested_component_app_callback
_data = pandas.read_csv(
'https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/' +
'manhattan_data.csv'
)
def test_dbmp001_genomewideline_value(dash_duo):
app = dash.Dash(__name__)
app.layout = html.Div(nested_component_layout(
dash_bio.ManhattanPlot(
dataframe=_data
)
))
nested_component_app_callback(
app,
dash_duo,
component=dash_bio.ManhattanPlot,
component_data=_data,
data_prop_name='dataframe',
test_prop_name='genomewideline_value',
test_prop_value=3,
prop_value_type='int',
take_snapshot=True
)
app = dash.Dash(__name__)
app.layout = html.Div(nested_component_layout(
dash_bio.ManhattanPlot(
dataframe=_data
)
))
nested_component_app_callback(
app,
dash_duo,
component=dash_bio.ManhattanPlot,
component_data=_data,
data_prop_name='dataframe',
test_prop_name='genomewideline_value',
test_prop_value=6,
prop_value_type='int',
take_snapshot=True
)
def test_dbmp002_suggestiveline_value(dash_duo):
app = dash.Dash(__name__)
app.layout = html.Div(nested_component_layout(
dash_bio.ManhattanPlot(
dataframe=_data
)
))
nested_component_app_callback(
app,
dash_duo,
component=dash_bio.ManhattanPlot,
component_data=_data,
data_prop_name='dataframe',
test_prop_name='suggestiveline_value',
test_prop_value=5,
prop_value_type='int',
take_snapshot=True
)
app = dash.Dash(__name__)
app.layout = html.Div(nested_component_layout(
dash_bio.ManhattanPlot(
dataframe=_data
)
))
nested_component_app_callback(
app,
dash_duo,
component=dash_bio.ManhattanPlot,
component_data=_data,
data_prop_name='dataframe',
test_prop_name='suggestiveline_value',
test_prop_value=9,
prop_value_type='int',
take_snapshot=True
)
def test_dbmp003_genomewide_color(dash_duo):
app = dash.Dash(__name__)
app.layout = html.Div(nested_component_layout(
dash_bio.ManhattanPlot(
dataframe=_data
)
))
nested_component_app_callback(
app,
dash_duo,
component=dash_bio.ManhattanPlot,
component_data=_data,
data_prop_name='dataframe',
test_prop_name='genomewideline_color',
test_prop_value='rgb(209, 171, 251)',
prop_value_type='string'
)
dash_duo.wait_for_style_to_equal(
'#test-graph svg:nth-child(3) g.layer-above g.shapelayer > path:nth-child(2)',
'stroke',
'rgb(209, 171, 251)'
)
def test_dbmp004_suggestive_color(dash_duo):
app = dash.Dash(__name__)
app.layout = html.Div(nested_component_layout(
dash_bio.ManhattanPlot(
dataframe=_data
)
))
nested_component_app_callback(
app,
dash_duo,
component=dash_bio.ManhattanPlot,
component_data=_data,
data_prop_name='dataframe',
test_prop_name='suggestiveline_color',
test_prop_value='rgb(251, 171, 209)',
prop_value_type='string'
)
dash_duo.wait_for_style_to_equal(
'#test-graph svg:nth-child(3) g.layer-above g.shapelayer > path:nth-child(1)',
'stroke',
'rgb(251, 171, 209)'
)
def test_dbmp005_highlight_color(dash_duo):
app = dash.Dash(__name__)
app.layout = html.Div(nested_component_layout(
dash_bio.ManhattanPlot(
dataframe=_data
)
))
nested_component_app_callback(
app,
dash_duo,
component=dash_bio.ManhattanPlot,
component_data=_data,
data_prop_name='dataframe',
test_prop_name='highlight_color',
test_prop_value='rgb(76, 184, 254)',
prop_value_type='string',
take_snapshot=True
)