-
Notifications
You must be signed in to change notification settings - Fork 154
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
Add parameter for more resilient concat_on_disk
#1602
Comments
concat_on_disk
only on X/layers
Hmm, since this function exists explicitly to handle big files, I think it wouldn’t be fair to say “just make new files without these parts”, so this is a reasonable request. Regarding API: We already have the Therefore I think we have two options:
Footnotes
|
concat_on_disk
only on X/layersconcat_on_disk
Hi @flying-sheep , I think you misunderstood my meaning. I have two adata files, both have obsm['X_pca'], but the shapes are different: (369626, 50) and (135426, 63). So I got an error. Is there a way to skip the concat of obsm? |
I understood that perfectly. No, there isn’t, that’s why I’m brainstorming solutions. |
OK. Thanks. |
Please make sure these conditions are met
Report
When I concat two adata using the following code:
I got an error:
Because the obsm['X_pca'] has a different shape in two adatas, but I only need to contact the X, I don't need obsm or varm.
Could you please add a parameter to let me skip obsm (or varm) and only concat X?
Versions
The text was updated successfully, but these errors were encountered: