Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 1013 #1018

Merged
merged 17 commits into from
Jan 20, 2021
Prev Previous commit
Next Next commit
tiny fix
Leily Rabbani committed Nov 16, 2020
commit 65fc019799aaf97e1f458bf01bbd16ba5f129acf
2 changes: 1 addition & 1 deletion deeptools/correlation.py
Original file line number Diff line number Diff line change
@@ -590,7 +590,7 @@ def plotly_pca(self, plotFile, Wt, pvar, PCs, eigenvalues, cols, plotTitle):
annos.append({'yanchor': 'bottom', 'xref': 'paper', 'xanchor': 'center', 'yref': 'paper', 'text': 'PCA', 'y': 1.0, 'x': 0.25, 'font': {'size': 16}, 'showarrow': False})
annos.append({'yanchor': 'bottom', 'xref': 'paper', 'xanchor': 'center', 'yref': 'paper', 'text': 'Scree plot', 'y': 1.0, 'x': 0.75, 'font': {'size': 16}, 'showarrow': False})

fig['data'] = data
#fig['data'] = data
fig.add_traces(data)
fig['layout']['annotations'] = annos
offline.plot(fig, filename=plotFile, auto_open=False)