Open celinech opened 3 years ago
Hi !
I managed to work with dynwrap passing from a sparse matrix to a complete matrix. Then doing the transposition to retrieve the right orientation of my data.
SO <- readRDS("my_file.rds")
tSO_counts <- t(as.matrix(SO@assays$RNA@counts))
tSO_expres <- t(as.matrix(SO@assays$RNA@data))
dataset <- wrap_expression(
counts = tSO_counts,
expression = tSO_expres
)
guidelines <- guidelines_shiny(dataset)
looking forward to a better solution, Thank you for the easy to use package !
Hi devs!!
I am running into a problem where the feature_ids and cell_ids are reversed from a Seurat object source. I ran the first lines to prepare the data as explain in the Quick start of dynverse.
I tried to use the function provided in the issue dynverse/dynwrap #150 . Unfortunately, the counts and data information are not stored into a matrix, so the transpose function does not work.
In summary, I have in my dataset
For comparison, after wrap_expression() function I run into a dataset with
as shown in the dynguidelines, when I do
I wonder if the trajectory inference methods will well retrieve the information for the step after in infer_trajectory() function. Does someone know how to get information properly from a Seurat object ?
Thanks, CĂ©line