-
Notifications
You must be signed in to change notification settings - Fork 48
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
h5Seurat format #117
Comments
for using seurat object, STREAM had suggested loomR conversion in seurat. |
Okay, I've tried this. and working like previous #100 setting. patient object is subset of original my data and performed "FindVariableFeatures", "ScaleData" after subsetting.library(Seurat) in STREAM:adata = ad.read_h5ad("patient.h5ad") adata.obsm['top_pcs'] = adata.obsm['X_pca'] then I can either learn graphical structure directly on UMAP from seurat:st.plot_visualization_2D(adata,method='umap',n_neighbors=50,color=['label'],use_precomputed=True,fig_size=[11,9]) |
Sorry about the delay. Thanks very much for the feedback and solution. This looks all right to me. I would suggest lowering We are currently working on STREAM2 and making STREAM compatible with other single-cell analysis is one big part of it. Hope that our STREAM2 will facilitate the conversion between different file formats. Stay tuned! |
I'm realized an issue. in STREAM: adata.obsm['top_pcs'] = adata.obsm['X_pca'] For my integration Seurat object, upper code in STREAM was used. Please check whether the upper setting is correct. |
Hi, the setting looks all right to me. It seems the same as the code you shared previously though. I am not sure what the problem here is. |
hmmm. My integrated Seruat object lost many cells in subway plot and flat tree plot. |
AnnData object with n_obs × n_vars = 11826 × 2000 in my data, n_vars is only 2000. I think that is problem. |
I don't think the number of features should be a problem. I am not sure why cells are missing in those plots, which is something new to me. It would be helpful if you can share with me a notebook to reproduce the issue. Give such information, unfortunately i can not help much. |
Hi,
is it possible to use h5Seurat format converted by SeuratDisk in STREAM?
https://mojaveazure.github.io/seurat-disk/articles/convert-anndata.html
My data is integrated seurat object.
The text was updated successfully, but these errors were encountered: