-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Error when saving h5seurat #27
Comments
Hey! I am facing the same problem, could you explain how did you solve it? Thanks a lot! |
Unfortunately, I have not been able to solve this issue. I was trying to export the seurat object as |
I had a simillar problem as well:
|
This is not a solved issue. |
Any work around ? |
I have the same issue too, but I found that |
Same error :
last version |
Same issue for me too
|
Any update on this? I have not yet found a solution |
Just tested Seurat5. Same error for me as well.
|
Do you have any solution? |
Even if you - like me - are trying to export the SCT assay data into the DefaultAssay(obj) <- 'RNA' # temporarily making 'RNA' active assay
obj <- FindVariableFeatures(obj)
DefaultAssay(obj) <- 'SCT' # returning 'SCT' as the default assay SaveH5Seurat(obj,
filename = "obj.h5Seurat",
overwrite = T,
verbose = T
)
#> Warning: Overwriting previous file oiseau_to_plot_inset.h5Seurat
#> Creating h5Seurat file for version 3.1.5.9900
#> Adding counts for SCT
#> Adding data for SCT
#> Adding scale.data for SCT
#> Adding variable features for SCT
#> No feature-level metadata found for SCT
#> Writing out SCTModel.list for SCT |
Hello, I had the same problem with I fixed it by switching my RNA Assay5 class into Assay class with I was then able to properly save my object with Hope this helps |
integrated[["RNA"]] <- as(object = integrated[["RNA"]], Class = "Assay",is work!!!very thank U |
Good day,
I am having issues saving a Seurat object with
SaveH5Seurat
. Do not know what the problem can be.Any ideas on how to solve this issue? thanks in advance
The text was updated successfully, but these errors were encountered: