fix #375: auto-convert StereoExpData to AnnData in spatial_alignment#432
Draft
cursor[bot] wants to merge 1 commit intomainfrom
Draft
fix #375: auto-convert StereoExpData to AnnData in spatial_alignment#432cursor[bot] wants to merge 1 commit intomainfrom
cursor[bot] wants to merge 1 commit intomainfrom
Conversation
Instead of raising TypeError when input is not AnnBasedStereoExpData, automatically convert plain StereoExpData to AnnData using the already-imported stereo_to_anndata function. This allows spatial_alignment to work with MSData integrated from GEF files. Co-authored-by: wanruiwen-genomics-cn <wanruiwen-genomics-cn@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
SpatialAlignment.main()method raisesTypeError: The input data should be an object of AnnBasedStereoExpDatawhen called viams_data.tl.spatial_alignment()on MSData integrated from GEF files. The root cause is a strictisinstancecheck on line 62 ofstereo/algorithm/spatial_alignment/main.pythat rejects plainStereoExpDataobjects. TheAnnBasedStereoExpDatatype is only needed to access.adata, but the already-importedstereo_to_anndatafunction can produce this from anyStereoExpData.Changes
stereo/algorithm/spatial_alignment/main.py: Replaced theTypeError-raising type gate with an auto-conversion branch. If the input isAnnBasedStereoExpData, uses.adatadirectly; otherwise, converts viastereo_to_anndata()withsplit_batches=False. All downstream result storage continues to useself.stereo_exp_data.Verification
Classification
Closes #375