-
Notifications
You must be signed in to change notification settings - Fork 231
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
Seurat2 with Veloctyo.R #16
Comments
This is more of a question for the Seurat list, but we'll try to add an example when we update tutorials. |
I happened to be a fan of both packages. You would find the answers at the Seurat2's pbmc3K tutorial. For cell clustering, see the section "Cluster the cells". The function is For cell embedding, always run For the better cell distance, in principle, you could adapt the below code from
|
It worked very well for me using Seurat object in velocyto functions, I just needed to rename the emat and nmat colnames in order to fit with the ones in Seurat Object:
|
Hi @Jemkon,
For Seurat you need to use a single matrix, as far as I understand the dat
object contains 3 different matrices (spliced, ambiguous, unspliced).
The function to create a seurat object is very simple:
CreateSeuratObject(raw.data, project = "SeuratProject", min.cells = 0,
min.genes = 0, normalization.method = NULL,
scale.factor = 10000, do.scale = FALSE, do.center = FALSE,
names.field = 1, names.delim = "_", meta.data = NULL,
display.progress = TRUE, ...)
But you need a raw.data in a single matrix format with cells in columns and
gene in rows.
I dont know what you are trying to do, but I was not happy with the
combination of my seurat results with velocyto. I ended up using pagoda +
velocyto pipeline and matching the t-SNE clusters later by looking at the
gene markers.
Best,
Ramon
On Wed, 28 Mar 2018 at 11:06 Jemkon ***@***.***> wrote:
Hi @ramonvidal <https://github.com/ramonvidal>,
Thanks for sharing your code for seurat. I was wondering how do I use the
"cell.counts.matrices.rds" file (created by dropEST) to create seurat
object?
I tried following code but failed....
dat <- readRDS("/home/10X_CellRnager/velocyto/cell.counts.matrices.rds")
pbmc <- NormalizeData(object = dat, normalization.method = "LogNormalize",
scale.factor = 10000)
Could you please share more info on creating seurat object?
Many thanks.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#16 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAG_gt5KGaD2OtnGbkdpjRHSrc1zWMllks5ti1KvgaJpZM4SD2VK>
.
--
Ramon Vidal
+4917621123210 <+49%20176%2021123210>
|
Thanks @ramonvidal. I was trying to compare and see how pagoda and seurat performs with velocyto. I found the same. The Pagoda2 + velocyto works best compared to Seurat2 + velocyto. Many thanks for your suggestions. |
I would rahter vote for Seurat2 + velocyto simply because Seurat enables "Diffusion Map" ( See |
Could someone please explain to me how/where I get the emat (spliced count matrix) and nmat (unspliced count matrix) from if I am using a seurat object? |
@LineWulff - You will need to run the Velocyto command line tools on the dataset first to get the splicing information. That will create the loom file which you can get the emat and nmat. Then you can use the tSNE embeddings from Seurat, with the emat and nmat from the loom file to make your plot... it's a bit tricky. |
@ramonvidal How did you make your pbmcY1.rds? |
Hi @x811zou , that is a typo, pbmcY1 == pbmc |
@ramonvidal , I was able to create cell embedding and clustering using seurat, but when I rename the emat and nmat colnames by running |
I may not be following, but "renaming the emat and nmat colnames" should be
|
@chlee-tabin , sorry I'm completely new to R scripts, I guess my question is in velocity estimation, they used Pagoda2 object for the following command: |
@chinalex9527 , with a Seurat object I did: |
Here is my full code for making this work -- hope this helps you all
|
@jebard , thank you so much! The code worked beautifully! |
@jebard , Many thanks for your full code!! Very helpful, since applying RNA velocity does not seem to be straightforward, and a clear pipeline to use it in conjunction with Seurat is missing from the creators, as far as I know. It will be great if you could please clarify two things:
Many thanks again, in advance! |
Further, the output of Thank you! |
Went back to the code and was able to get the colors out using this: gg <- TSNEPlot(myData) I'm not sure why originally i had it as ggplot$Lpo -- i'll update my code above accordingly. The output of the command show.velocity.on.embedding.cor should result in a plot being generated. I use Rstudio so it automatically pops up a plot. How I typically export to a file is by: png("~/my-exported-graph.png") The reason I have been saving it into the p1 object, is that it can help speed up replotting the figure should you need to make any graphical changes (like arrow size / density) -- to do this, you pass the parameter cc=p1$cc R version 3.4.2 Seurat_2.3.4 cowplot_0.9.2 ggplot2_3.0.0 velocyto.R_0.6 |
Hi @jebard Thanks for very detailed demonstration! |
It’s not strictly necessary to select “cluster-distinguishing genes - it’s a recommended step. If different clusters in your dataset represent different points in the dynamic process, this will likely result in an informative gene set.
… On Apr 23, 2019, at 3:36 AM, MichaelPeibo ***@***.***> wrote:
Hi @jebard <https://github.com/jebard>
Thanks for very detailed demonstration!
Just one question related to this. Do I need filter.genes.by.cluster.expression before gene.relative.velocity.estimates?
I saw this step in this tutorial <http://pklab.med.harvard.edu/velocyto/notebooks/R/DG1.nb.html>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#16 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AC2PX4XJZ5W6FDKBVR7ISGTPR237VANCNFSM4EQPMVFA>.
|
Hi @pkharchenko |
Hi @jebard Thanks for your code. What exactly is dr? When I was trying to run this command: emb <- lrc8@dr$tsne@cell.embeddings |
Hi @MazzzzzeLuo Also make sure you are using Seuratv2 rather than v3. |
@MichaelPeibo Would it be possible to elaborate the need for v2 over v3? I'm using v3 and getting an error (below) that I'm trying to trace, may be due to the inputs which may be version related.
|
I'm having some trouble with transferring some of the commands over.
Shouldn't ident be automatically created when the cluster neighbors are generated? When I ran a DimPlot for UMAP I was able to group it by "ident" as well, so I'm not sure what the problem is. Also like @GBeattie I am trying to use Seurat v3 rather than v2 |
hI, |
I ran follow your code, and the last step went wrong, |
Hi @Bioinformatics-rookie , |
I have the same problem too. Have you guys solved it? |
Hello, I have encountered this problem, how can I solve it, I still do not understand When you run three more samples separately, one of them will have such a problem at this step, and the other two will work correctly. I found that the number of rows of the seurat object with the error sample did not match the number of row with spliced, while the other two samples matched |
Hello,
I have tested the velocyto.R package with Pagoda2 as described in tutorials. But I would really like to test it with Seurat2.
How do I create cell embedding, cell clustering, and accurate cell-cell distance matrix using Seurat2?
Many thanks.
The text was updated successfully, but these errors were encountered: