Update app.py
Browse files
app.py
CHANGED
|
@@ -64,7 +64,10 @@ def get_heatmap(sequence):
|
|
| 64 |
plt.yticks(rotation=0)
|
| 65 |
plt.xticks(y_tick_positions, y_tick_labels, rotation = 0)
|
| 66 |
|
| 67 |
-
|
|
|
|
|
|
|
|
|
|
| 68 |
|
| 69 |
|
| 70 |
|
|
|
|
| 64 |
plt.yticks(rotation=0)
|
| 65 |
plt.xticks(y_tick_positions, y_tick_labels, rotation = 0)
|
| 66 |
|
| 67 |
+
fig = plt.gcf()
|
| 68 |
+
plt.close(fig)
|
| 69 |
+
|
| 70 |
+
return fig
|
| 71 |
|
| 72 |
|
| 73 |
|