Skip to content
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

Feature selection by Moran'I score #110

Closed
wants to merge 4 commits into from
Closed

Conversation

Qirongmao97
Copy link
Contributor

@Qirongmao97 Qirongmao97 commented Dec 13, 2023

Selecting top spatially variable genes based on Moran's I using Squidpy (After Log-normalization)

@Qirongmao97 Qirongmao97 self-assigned this Dec 13, 2023
sc.pp.log1p(adata)

## Compute the graph based from Delaunay triangulation
sq.gr.spatial_neighbors(adata,coord_type="generic",delaunay= True)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wondering if that should be a commandline arg rather than being calculated on the fly. Otherwise we will have situation later where the neighborhood structure used in the method might be different than the one used for feature selection which could be awkward.
@naveedishaque

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For Visium we could just use the default?

For others there are parameters like:
n_neighs ([int])
radius ([int])
delaunay ([bool])

Reference: https://squidpy.readthedocs.io/en/stable/api/squidpy.gr.spatial_neighbors.html

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wondering if that should be a commandline arg rather than being calculated on the fly. Otherwise we will have situation later where the neighborhood structure used in the method might be different than the one used for feature selection which could be awkward.

Oh, this is interesting. We want to make sure that the transformations and neighborhood structure is controlled outside, so technically this would need to import the log1p data and import the neighborhood graph.

Comments:

  • branch name change to "preproc_MoranI_scanpy_Qirongmao"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wondering if that should be a commandline arg rather than being calculated on the fly. Otherwise we will have situation later where the neighborhood structure used in the method might be different than the one used for feature selection which could be awkward.

Oh, this is interesting. We want to make sure that the transformations and neighborhood structure is controlled outside, so technically this would need to import the log1p data and import the neighborhood graph.

Comments:

  • branch name change to "preproc_MoranI_scanpy_Qirongmao"

Then should we need to make a separate pipeline for generating the neighborhood graph?

Branch name with "Vignette 2.0" is also a good option :)

@niklasmueboe
Copy link
Collaborator

Do we have an associated Issue for this PR?

- Moved default gene numbers to Argparser
- Removed normalization steps
@Qirongmao97
Copy link
Contributor Author

Do we have an associated Issue for this PR?

Not sure if fully associated with #83

Replacing the neibourhood calculation by using the output of squidpy.gr.spatial_neighbors from upstream preprocessing script
@Qirongmao97 Qirongmao97 deleted the metric_MoranI_Qirongmao branch December 13, 2023 13:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants