Spaces:
Sleeping
Sleeping
Commit
·
0072995
1
Parent(s):
926329c
Update app.py
Browse files
app.py
CHANGED
@@ -145,7 +145,8 @@ if len(gene_list) > 1:
|
|
145 |
text = [i for i in gene_list]
|
146 |
#text = iter(text)
|
147 |
for i in range(1, len(plotly_fig['data']), 2):
|
148 |
-
|
|
|
149 |
plotly_fig['data'][i]['name'] = ''
|
150 |
plotly_fig['data'][i]['text'] = t
|
151 |
plotly_fig['data'][i]['hoverinfo'] = 'text'
|
|
|
145 |
text = [i for i in gene_list]
|
146 |
#text = iter(text)
|
147 |
for i in range(1, len(plotly_fig['data']), 2):
|
148 |
+
for gene in gene_list:
|
149 |
+
t = gene #text.__next__()
|
150 |
plotly_fig['data'][i]['name'] = ''
|
151 |
plotly_fig['data'][i]['text'] = t
|
152 |
plotly_fig['data'][i]['hoverinfo'] = 'text'
|