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
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.
> str(SO@assays[["RNA"]]@counts)
Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
..@ i : int [1:113749606] 2 3 4 5 9 13 17 22 24 27 ...
..@ p : int [1:21886] 0 6676 11901 17770 24860 31899 37467 43675 49359 52809 ...
..@ Dim : int [1:2] 23913 21885
..@ Dimnames:List of 2
.. ..$ : chr [1:23913] "Xkr4" "Rp1" "Sox17" "Mrpl15" ...
.. ..$ : chr [1:21885] "GAS_Day4_batch4_AAACCCATCGACTCCT" "GAS_Day4_batch4_AAACGAAGTCATAACC" "GAS_Day4_batch4_AAACGCTCAAGCGAGT" "GAS_Day4_batch4_AAACGCTCACCCTAAA" ...
..@ x : num [1:113749606] 5 9 1 1 2 2 1 2 7 7 ...
..@ factors : list()
In summary, I have in my dataset
21885 cells
23913 features
For comparison, after wrap_expression() function I run into a dataset with
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 ?
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.
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
The text was updated successfully, but these errors were encountered: