Replies: 1 comment 1 reply
-
I run into the same problem. Try to modify some parameter, but nothing changed. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I am new to scVelo application and I have some problems during studying the tutorial 'Velocity graph and pseudotime' in https://scvelo.readthedocs.io/en/stable/VelocityBasics/,
In my output, cell-to-cell transitions didn't overlap with the umap clusters plot like following(Fig.1),
scv.pl.velocity_graph(adata,threshold=0.2)
only set arrows=True could made it like the following(Fig.2), and in this situation edges_on_top=None didn't works
also, the the velocity graph generated by scv.pl.velocity_graph(adata) is quite small and the legend is quite big(Fig.3)
x, y = scv.utils.get_cell_transitions(adata, basis='umap', starting_cell=70)
ax = scv.pl.velocity_graph(adata, c='lightgrey', edge_width=.05, show=False)
ax = scv.pl.scatter(adata, x=x, y=y, s=120, c='ascending', cmap='gnuplot', ax=ax)
My question is how to deal with it. Any help is greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions