You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apologies for posting a question here and not in the Google Group, the latter became home to spam in recent months so I preferred to ask my question here:
I am new to Monocle and would like to use my already processed Seurat object using Monocle3. In addition, I calculated a PHATE embedding and would very much like to use it and not the UMAP embedding used by default in Monocle3. I learned that I should use as.cell_data_set() to convert my Seurat object to something that can be used by Monocle3, but then I received a warning that cluster partitions should be calculated by Monocle as well. In addition, I can't find any official tutorial as to how should I process Seurat objects and use Monocle3 only for trajectory inference.
Can someone share a code as to how should I process my Seurat object and use a custom dimensionality reduction embedding using learn_graph()?
Many thanks in advance,
Yan
The text was updated successfully, but these errors were encountered:
I was trying to do the same: running Monocle3 using a PHATE embedding. My case consists of malignant cells running over a differentiation path, cases in which typically UMAP would cluster by patients (or similarly) while PHATE could resolve the complexity.
Let cds be a cell_data_set, I separately computed PHATE for my matrix (will return a data.frame) and then called phate<-as.matrix(phate)
In the meantime, let's compute the necessary preprocessing steps for cds. What i though is to compute first their UMAP embedding, then substitute the UMAP embedding with our PHATE embedding (for sure concerns will be risen, still let's analyse each step to ensure consistency):
use_partition can be either TRUE or FALSE depending if you want a single trajectory or multiple ones.
In my case this worked, but I noticed that the results were pretty disappointing, plus the consuption of RAM speeds up incredibly high. With standard UMAP it is not the case even for large datasets. We may adjust parameters in learn_graph_control(), but suggestions are welcome.
Hi,
Apologies for posting a question here and not in the Google Group, the latter became home to spam in recent months so I preferred to ask my question here:
I am new to Monocle and would like to use my already processed Seurat object using Monocle3. In addition, I calculated a PHATE embedding and would very much like to use it and not the UMAP embedding used by default in Monocle3. I learned that I should use as.cell_data_set() to convert my Seurat object to something that can be used by Monocle3, but then I received a warning that cluster partitions should be calculated by Monocle as well. In addition, I can't find any official tutorial as to how should I process Seurat objects and use Monocle3 only for trajectory inference.
Can someone share a code as to how should I process my Seurat object and use a custom dimensionality reduction embedding using learn_graph()?
Many thanks in advance,
Yan
The text was updated successfully, but these errors were encountered: