Replies: 1 comment
-
Not sure what the question is but I presume it's why there are only 22 observations left after merging. Looks like your two AnnData objects only have 22 observations in common. You can check the number of common observations yourself by import pandas as pd
import scvelo as scv
adata_t0 = scv.read("../Analyses_velocyto/icare5_t0h/velocyto/icare5_t0h.loom",cache=True)
adata_t4 = scv.read("../Analyses_velocyto/icare5_t4h/velocyto/icare5_t4h.loom",cache=True)
pd.unique(adata_t0.obs_names.intersection(adata_t4.obs_names)).size |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
After having loaded 2 velocyto loom files, I tried to merge them but the result shows very few (22) observations
Thank you for your answers
Beta Was this translation helpful? Give feedback.
All reactions