scVelo on Seurat umap
Hello,
Using scVelo, after you’ve computed velocities etc and it gives you your velocity plot. Is there a way to overlay the velocity plots onto the embedding of the UMAP you obtain from your Seurat analysis?
Thanks
• 3.1k views
There is also this guide from Seurat, which shows you how to do the pre-processing in R and velocity analysis in python using Jupyter notebooks (also possible using Rstudio).
The key point here is that you convert the Seurat object to an h5seurat
object, which is then converted to an h5ad
object; this h5ad object is what is then loaded into python to project RNA velocity on Seurat’s UMAP embeddings. DON’T try to convert a Seurat object using as.loom()
because the function will inevitably fail since the Seurat object does not contain the necessary information to create the loom file (the loom file is generated with information about spliced and unspliced counts, which the Seurat object does not normally contain).
Read more here: Source link